-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.6 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
{
"name": "simploy",
"version": "2.0.0",
"description": "A simple CI/CD deployment tool for personal and small team use. Effortless SSH deployment with environment and secret management.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"simploy": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"format": "prettier --write src/",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"deploy",
"cicd",
"ssh",
"cli",
"automation",
"simploy",
"simpledeploy"
],
"repository": {
"type": "git",
"url": "https://github.com/JunDev76/Simploy.git"
},
"bugs": {
"url": "https://github.com/JunDev76/Simploy/issues"
},
"homepage": "https://github.com/JunDev76/Simploy#readme",
"author": "JunDev76",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"archiver": "^7.0.1",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"node-ssh": "^13.1.0",
"ora": "^5.4.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/archiver": "^6.0.3",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.0"
}
}