-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"private": true,
"author": "张新伟 <me@shencang.blue>",
"engineStrict": true,
"engines": {
"node": "^20.12.2 || >= 22.0.0"
},
"scripts": {
"core": "bun --filter @avocado/core",
"netstat": "bun --filter @avocado/netstat-lib",
"agent": "bun --filter ./projects/agent",
"agent:build": "bun --filter ./projects/agent run build",
"agent:build:all": "bun --filter ./projects/agent run build:all",
"app": "bun --cwd ./projects/frontend",
"api": "bun --cwd ./projects/backend",
"demo": "bash ./scripts/demo.sh",
"demo:up": "docker compose up -d && bash ./scripts/demo.sh"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "20.x.x",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"overrides": {
"typescript": "$typescript",
"vite": "$vite",
"vitest": "$vitest",
"@types/node": "$@types/node"
},
"prettier": {
"semi": true,
"tabWidth": 2
},
"packageManager": "bun@1.3.11",
"workspaces": [
"packages/*",
"projects/*"
]
}