-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.15 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
{
"name": "ore-code",
"private": true,
"version": "0.1.0",
"license": "MIT",
"description": "DeepSeek-first desktop coding agent workbench",
"packageManager": "pnpm@11.0.8",
"engines": {
"node": ">=20",
"pnpm": ">=11 <12"
},
"type": "module",
"scripts": {
"dev": "pnpm --filter @ore-code/desktop tauri dev",
"build": "pnpm -r --sort build",
"build:desktop:windows": "pnpm --filter @ore-code/desktop tauri:build:win",
"typecheck": "pnpm build && pnpm -r --sort typecheck",
"test": "pnpm build && pnpm -r --sort test",
"test:harness": "pnpm --filter @ore-code/protocol build && pnpm --filter @ore-code/tools build && pnpm --filter @ore-code/agent-core build && pnpm --filter @ore-code/harness test",
"smoke:shell-jobs": "bash scripts/smoke-shell-jobs.sh",
"ci:local": "pnpm typecheck && pnpm test && pnpm lint && cargo test --manifest-path apps/desktop/src-tauri/Cargo.toml",
"lint": "pnpm -r --sort lint"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"typescript": "~5.8.3",
"vitest": "^4.0.8"
}
}