-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "agentbox",
"private": true,
"type": "module",
"packageManager": "[email protected]+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a",
"scripts": {
"check": "turbo run build type-check lint",
"check:ci": "turbo run build type-check docker-build && biome check",
"check:all": "turbo run build type-check lint docker-build",
"lint": "biome check --write",
"docker-build": "docker compose --profile server build",
"dev": "turbo run dev",
"dev-with-tunnel": "turbo run dev tunnel",
"tunnel": "cloudflared tunnel --config ~/.cloudflared/agentbox-dev.yml run agentbox-dev",
"build": "turbo run build",
"test": "vitest --project backend --project frontend --project openclaw-agentbox",
"test:smoke": "vitest run --project smoke"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@typescript/native-preview": "7.0.0-dev.20260305.1",
"@vitest/coverage-v8": "^4.0.18",
"turbo": "^2.8.13",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"@reown/appkit",
"@whiskeysockets/baileys",
"esbuild",
"keccak",
"koffi",
"node-llama-cpp",
"protobufjs",
"sharp",
"ssh2"
]
}
}