-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "proxmox-sdk",
"version": "0.0.4",
"description": "Opiniated and abtracted Typescript SDK for Proxmox",
"author": "Tchoupinax <corentinfiloche@hotmail.fr> (https://corentinfiloche.xyz)",
"license": "MIT",
"keywords": [
"API",
"Proxmox",
"SDK"
],
"repository": {
"type": "git",
"url": "https://github.com/Tchoupinax/proxmox-sdk"
},
"bugs": {
"url": "https://github.com/Tchoupinax/proxmox-sdk/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint .",
"lint:fix": "yarn lint:eslint --fix && prettier --write .",
"lint:inspect": "npx @eslint/config-inspector@latest",
"lint:prettier": "prettier . --check"
},
"devDependencies": {
"@types/node": "22.10.2",
"eslint": "^9.8.0",
"eslint-plugin-perfectionist": "^3.1.3",
"prettier": "^3.3.3",
"typescript": "5.7.2"
},
"dependencies": {
"axios": "1.7.9",
"nestjs-pino": "4.2.0"
}
}