-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 917 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
40
41
42
{
"name": "dev-cli",
"version": "1.1.0",
"description": "Declarative local environment orchestration CLI",
"license": "MIT",
"type": "module",
"bin": {
"dev": "./bin/dev"
},
"main": "./dist/index.js",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts --help",
"test": "yarn build && node --test --test-force-exit test/*.test.mjs"
},
"engines": {
"node": ">=24.19.0"
},
"dependencies": {
"@xterm/headless": "^6.0.0",
"blessed": "^0.1.81",
"cli-table3": "^0.6.5",
"commander": "^14.0.1",
"execa": "^9.6.0",
"node-pty": "^1.1.0",
"picocolors": "^1.1.1",
"yaml": "^2.8.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/node": "^24.7.2",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"packageManager": "yarn@1.22.22"
}