-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 869 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
{
"name": "roller-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/roller/tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "oxlint packages scripts",
"test": "vitest run",
"gate": "node scripts/gate.mjs",
"gate:docker": "docker build --tag roller-gate . && docker run --rm --user \"$(id -u):$(id -g)\" --volume \"$PWD:/workspace\" --volume /workspace/.pnpm-store --volume /workspace/node_modules --volume /workspace/packages/roller/node_modules roller-gate"
},
"devDependencies": {
"@deepseek-ai/dsh": "catalog:",
"@deepseek-ai/dsh-llm-replay": "catalog:",
"@types/node": "22.20.0",
"oxlint": "1.76.0",
"typescript": "6.0.3",
"vitest": "4.1.8"
}
}