-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
{
"name": "csdeploy",
"version": "1.3.2",
"description": "Fast, Secure, and Modern Web Deployment CLI Tool",
"main": "src/index.js",
"type": "module",
"bin": {
"csdeploy": "./src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dashboard:server": "node dashboard/server/src/index.js",
"dashboard:client": "cd dashboard/client && npm run dev",
"dashboard": "node src/dashboard.js"
},
"keywords": [
"deployment",
"cli",
"ftp",
"ssh",
"sftp",
"web-deploy",
"automation"
],
"author": {
"name": "Mehdi Harzallah",
"email": "[email protected]",
"url": "https://github.com/opestro"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/opestro/csdeploy.git"
},
"bugs": {
"url": "https://github.com/opestro/csdeploy/issues"
},
"homepage": "https://github.com/opestro/csdeploy#readme",
"dependencies": {
"basic-ftp": "^5.0.3",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"figlet": "^1.6.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.3",
"gradient-string": "^2.0.2",
"ignore": "^5.3.2",
"inquirer": "^9.2.10",
"node-ssh": "^13.1.0",
"ora": "^7.0.1",
"socket.io": "^4.7.2",
"socket.io-client": "^4.8.1"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/**/*"
]
}