-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.44 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
{
"name": "dashi-workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.7.0",
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"scripts": {
"build": "tsc -p packages/dashi/tsconfig.build.json",
"dev": "pnpm run build && node scripts/dev.mjs",
"typecheck": "tsc --noEmit",
"lint": "oxlint packages scripts",
"test": "vitest run",
"gate": "node scripts/gate.mjs",
"gate:docker": "docker build --tag dashi-gate . && docker run --rm --env CI --env HOST_UID=\"$(id -u)\" --env HOST_GID=\"$(id -g)\" --security-opt seccomp=unconfined --security-opt apparmor=unconfined --security-opt systempaths=unconfined --volume \"$PWD:/workspace\" --volume /workspace/.pnpm-store --volume /workspace/node_modules --volume /workspace/packages/dashi/node_modules --volume /workspace/packages/dashi-app/node_modules --volume /workspace/packages/dashi-launcher/node_modules dashi-gate"
},
"devDependencies": {
"@deepseek-ai/cordis": "catalog:",
"@deepseek-ai/dsh": "catalog:",
"@deepseek-ai/dsh-agent-loop": "catalog:",
"@deepseek-ai/dsh-agent-loop-testkit": "catalog:",
"@deepseek-ai/dsh-llm-replay": "catalog:",
"@deepseek-ai/dsh-schedule": "catalog:",
"@deepseek-ai/dsh-session-projection": "catalog:",
"@xterm/headless": "6.0.0",
"@types/node": "22.20.0",
"node-pty": "1.2.0-beta.15",
"oxlint": "1.76.0",
"typescript": "6.0.3",
"vitest": "4.1.8"
}
}