-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.29 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@codepraycode/nobox-console",
"version": "1.0.0",
"description": "CLI to Nobox cloud service, visit https://nobox.cloud for more details",
"main": "src/index.ts",
"bin": "./dist",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"dev": "npx nodemon",
"lint": "eslint . --ext .ts",
"build": "tsc",
"package:win": "pkg . --out-path bin -b --targets node16-win-x64"
},
"author": "codepraycode",
"repository": {
"url": "https://github.com/codepraycode/nobox-console"
},
"keywords": [
"cli",
"nobox",
"cloud",
"nobox-console"
],
"license": "GPL-3.0",
"dependencies": {
"@types/cli-table": "^0.3.3",
"axios": "^1.5.1",
"cli-table": "^0.3.11",
"color-support": "^1.1.3",
"commander": "7.2.0",
"enquirer": "^2.4.1",
"figlet": "^1.6.0",
"jest": "^29.7.0",
"kleur": "^4.1.5",
"loading-cli": "^1.1.1"
},
"devDependencies": {
"@types/color-support": "^1.1.2",
"@types/figlet": "^1.5.6",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}