-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.38 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.38 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
{
"name": "@devalade/shipnode",
"version": "2.5.1",
"description": "Deploy Node.js apps to a single VPS with zero configuration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"bin": {
"shipnode": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"prepublishOnly": "pnpm lint && pnpm test && pnpm build"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"execa": "^9.5.1",
"fs-extra": "^11.3.5",
"jiti": "^2.4.2",
"js-yaml": "^4.1.0",
"listr2": "^10.2.1",
"ora": "^8.1.1",
"ssh2": "^1.16.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/ssh2": "^1.15.1",
"@vitest/coverage-v8": "^2.1.9",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"ssh2",
"cpu-features"
]
},
"license": "MIT"
}