proxmox-sdk 0.0.3 → 0.0.4-master-d1e8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -16
  2. package/package.json +13 -5
package/README.md CHANGED
@@ -1,16 +1,16 @@
1
- # proxmox-sdk
2
-
3
- ## Motivation
4
-
5
- I would like to work with Proxmox API and I did not find serious project for having a good and typed SDK. Moreover, these SDK are only reproducing the REST api without any added value. Proxmox API has a lot of complexity to understand and this SDK aims to make developer's life easier.
6
-
7
- ## Development
8
-
9
- Using [yalc](https://github.com/wclr/yalc), it's easy to make local update and to test the package in your project.
10
-
11
- - `yalc publish` # In the SDK repository
12
- - `yalc install proxmox-sdk@version` # In your project
13
-
14
- ## Sources
15
-
16
- - https://medium.com/@the_nick_morgan/creating-an-npm-package-with-typescript-c38b97a793cf
1
+ # proxmox-sdk
2
+
3
+ ## Motivation
4
+
5
+ I would like to work with Proxmox API and I did not find serious project for having a good and typed SDK. Moreover, these SDK are only reproducing the REST api without any added value. Proxmox API has a lot of complexity to understand and this SDK aims to make developer's life easier.
6
+
7
+ ## Development
8
+
9
+ Using [yalc](https://github.com/wclr/yalc), it's easy to make local update and to test the package in your project.
10
+
11
+ - `yalc publish` # In the SDK repository
12
+ - `yalc install proxmox-sdk@version` # In your project
13
+
14
+ ## Sources
15
+
16
+ - https://medium.com/@the_nick_morgan/creating-an-npm-package-with-typescript-c38b97a793cf
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proxmox-sdk",
3
- "version": "0.0.3",
3
+ "version": "0.0.4-master-d1e8",
4
4
  "description": "Opiniated and abtracted Typescript SDK for Proxmox",
5
5
  "author": "Tchoupinax <corentinfiloche@hotmail.fr> (https://corentinfiloche.xyz)",
6
6
  "license": "MIT",
@@ -19,14 +19,22 @@
19
19
  "main": "dist/index.js",
20
20
  "types": "dist/index.d.ts",
21
21
  "scripts": {
22
- "build": "tsc"
22
+ "build": "tsc",
23
+ "lint": "yarn lint:eslint && yarn lint:prettier",
24
+ "lint:eslint": "eslint .",
25
+ "lint:fix": "yarn lint:eslint --fix && prettier --write .",
26
+ "lint:inspect": "npx @eslint/config-inspector@latest",
27
+ "lint:prettier": "prettier . --check"
23
28
  },
24
29
  "devDependencies": {
25
- "@types/node": "20.14.9",
26
- "typescript": "5.5.3"
30
+ "@types/node": "22.1.0",
31
+ "eslint": "^9.8.0",
32
+ "eslint-plugin-perfectionist": "^3.1.3",
33
+ "prettier": "^3.3.3",
34
+ "typescript": "5.5.4"
27
35
  },
28
36
  "dependencies": {
29
- "axios": "1.7.2",
37
+ "axios": "1.7.3",
30
38
  "nestjs-pino": "4.1.0"
31
39
  }
32
40
  }