-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 827 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 827 Bytes
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
{
"name": "odeploy",
"version": "1.0.0",
"description": "Universal Deployment Toolkit — deploy and manage multiple projects on a single server with GitHub webhook support",
"bin": {
"odeploy": "./dist/cli.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepublish": "npm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^12.0.0",
"express": "^4.21.0",
"dotenv": "^16.4.0",
"chalk": "^5.3.0",
"zod": "^3.23.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"@types/node": "^20.14.0",
"@types/express": "^4.17.21"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"deploy",
"pm2",
"nginx",
"webhook",
"ci-cd",
"deployment-toolkit"
],
"license": "MIT"
}