-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
77 lines (77 loc) · 2.01 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "caprover",
"version": "2.3.1",
"description": "CLI tool for CapRover. See CapRover.com for more details.",
"main": "./built/commands/caprover.js",
"scripts": {
"tslint": "tslint -c tslint.json -p tsconfig.json",
"formatter": "prettier --check ./src/**/*.ts",
"formatter-write": "prettier --write ./src/**/*.ts",
"build": "npm run tslint && rm -rf ./built && npx tsc && chmod -R +x ./built "
},
"bin": {
"caprover": "./built/commands/caprover.js",
"caprover-deploy": "./built/commands/deploy.js",
"caprover-list": "./built/commands/list.js",
"caprover-login": "./built/commands/login.js",
"caprover-logout": "./built/commands/logout.js",
"caprover-serversetup": "./built/commands/serversetup.js",
"caprover-api": "./built/commands/api.js"
},
"repository": {
"type": "git",
"url": "https://github.com/caprover/caprover-cli"
},
"keywords": [
"Docker",
"Automated",
"Deployment",
"Heroku",
"Free",
"NodeJS",
"PHP",
"Nginx",
"Server",
"Container"
],
"engines": {
"node": ">=20"
},
"author": "Kasra Bigdeli",
"license": "Apache-2.0",
"lint-staged": {
"./**/*.{js}": [
"co-eslint",
"co-prettier --write",
"git add"
]
},
"dependencies": {
"chalk": "^5.3.0",
"command-exists": "^1.2.9",
"commander": "^12.1.0",
"configstore": "^7.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^6.5.0",
"js-yaml": "^4.1.0",
"ora": "^8.1.1",
"progress": "^2.0.3",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/command-exists": "^1.2.3",
"@types/configstore": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^6.5.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.1.0",
"@types/progress": "^2.0.7",
"@types/request-promise": "^4.1.51",
"@types/update-notifier": "^6.0.8",
"prettier": "^3.4.2",
"tslint": "^5.20.1",
"typescript": "^5.7.2"
}
}