-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "puter-cli",
"version": "1.2.1",
"description": "Command line interface for Puter cloud platform",
"main": "index.js",
"bin": {
"puter": "./bin/index.js"
},
"preferGlobal": true,
"type": "module",
"scripts": {
"start": "node bin/index.js",
"test": "vitest run tests/*",
"test:watch": "vitest --watch tests/*",
"version": "auto-changelog -p && git add CHANGELOG.md",
"coverage": "vitest run --coverage"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"puter",
"cli",
"cloud"
],
"author": "Ibrahim.H",
"license": "NoHarm",
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^13.0.0",
"conf": "^12.0.0",
"cross-spawn": "^7.0.3",
"glob": "^11.0.0",
"inquirer": "^9.2.12",
"minimatch": "^10.0.1",
"node-fetch": "^3.3.2",
"ora": "^8.0.1",
"uuid": "^11.0.5",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@vitest/coverage-v8": "2.1.8",
"auto-changelog": "^2.5.0",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitsnaps/puter-cli.git"
},
"bugs": {
"url": "https://github.com/bitsnaps/puter-cli/issues"
},
"homepage": "https://github.com/bitsnaps/puter-cli"
}