-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.01 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.01 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
{
"private": true,
"packageManager": "npm@10.8.2",
"workspaces": ["packages/*", "mecheval/harness", "mecheval/leaderboard"],
"scripts": {
"postinstall": "node scripts/build-changelog.mjs",
"build": "turbo build",
"test": "turbo test",
"dev": "turbo dev",
"build:mecheval": "npm run build -w @mecheval/harness && npm run build -w @mecheval/leaderboard",
"changelog:build": "node scripts/build-changelog.mjs",
"tauri": "cd crates/vcad-desktop && tauri",
"tauri:dev": "cd crates/vcad-desktop && tauri dev",
"tauri:build": "cd crates/vcad-desktop && tauri build",
"version:sync": "node scripts/sync-version.mjs",
"version:check": "node scripts/sync-version.mjs --check",
"publish:crates": "node scripts/publish-crates.mjs",
"publish:crates:dry": "node scripts/publish-crates.mjs --dry-run"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.88.0",
"@tauri-apps/cli": "^2",
"turbo": "^2"
},
"overrides": {
"onnxruntime-node": "npm:onnxruntime-web@1.21.0"
}
}