-
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) · 835 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 835 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": "exodus-cli",
"version": "0.1.0",
"type": "module",
"target": "node",
"private": false,
"bin": {
"exodus": "dist/exodus.js"
},
"scripts": {
"start": "bun bin/exodus.ts",
"dev": "bun --watch bin/exodus.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/bun": "latest",
"@types/node": "^25.0.2",
"@types/ssh2": "^1.15.5",
"vitepress": "^2.0.0-alpha.15"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"archiver": "^7.0.1",
"bun": "^1.3.4",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"minimatch": "^10.1.1",
"node-ssh": "^13.2.1",
"picocolors": "^1.1.1",
"tar": "^7.5.2",
"yaml": "^2.8.2"
}
}