forked from omar00050/easy-devops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "easy-devops",
"version": "1.2.1",
"description": "A unified DevOps management tool with CLI and web dashboard for managing Nginx, SSL certificates, and Node.js on Linux and Windows servers.",
"keywords": [
"devops",
"nginx",
"ssl",
"acme",
"letsencrypt",
"nodejs",
"dashboard",
"cli",
"server-management",
"reverse-proxy",
"certificate-management",
"sysadmin"
],
"author": {
"name": "Omar Farghaly",
"url": "https://github.com/omar00050"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/omar00050/Easy-DevOps.git"
},
"bugs": {
"url": "https://github.com/omar00050/Easy-DevOps/issues"
},
"homepage": "https://github.com/omar00050/Easy-DevOps#readme",
"type": "module",
"main": "src/cli/index.js",
"bin": {
"easy-devops": "src/cli/index.js",
"ezz": "src/cli/index.js"
},
"files": [
"src/",
"data/.gitkeep",
"install.bat",
"install.ps1",
"install.sh"
],
"scripts": {
"start": "node src/cli/index.js",
"test": "echo \" no test specified\"",
"dashboard": "node src/dashboard/server.js",
"system-info": "node src/cli/index.js system-info"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"acme-client": "^5.4.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"discord.js": "^14.26.2",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"express-session": "^1.17.3",
"good.db": "^2.5.0",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"session-file-store": "^1.5.0",
"socket.io": "^4.8.3"
}
}