-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.17 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": "stackmaster",
"version": "0.0.0",
"private": true,
"license": "GPL-3.0-or-later",
"packageManager": "pnpm@11.25.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "eslint --config tooling/eslint.config.mjs packages",
"lint:deps": "dependency-cruiser --config tooling/dependency-cruiser.cjs packages",
"lint:rust": "turbo run lint:rust",
"test:rust": "cargo test --manifest-path vm-engine/Cargo.toml --workspace && cargo test --release --manifest-path vm-engine/Cargo.toml --workspace",
"cov:rust": "cargo llvm-cov --manifest-path vm-engine/Cargo.toml --workspace --exclude vm-worker --fail-under-lines 90",
"scan:public": "node tooling/scan-public-artifacts.mjs",
"fixtures:manifest": "node tooling/generate-canonical-manifest.mjs",
"smoke:contract": "cargo run --manifest-path tooling/contract-smoke/Cargo.toml"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"dependency-cruiser": "^18.2.0",
"eslint": "^10.9.1",
"turbo": "^2.10.12",
"typescript": "^5.9.3",
"typescript-eslint": "^8.69.0"
}
}