-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.81 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
35
36
37
38
{
"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",
"test:coverage": "vitest run --config vitest.coverage.config.ts --coverage",
"lint": "eslint --config tooling/eslint.config.mjs packages apps",
"lint:deps": "dependency-cruiser --config tooling/dependency-cruiser.cjs packages apps",
"lint:deps:self-test": "node tooling/dependency-boundary-self-test.mjs",
"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",
"test:miri": "cargo +nightly miri test --manifest-path vm-engine/Cargo.toml -p vm-core",
"fuzz:smoke": "cargo fuzz run frame_command && cargo fuzz run challenge_bundle && cargo fuzz run byte_decode && cargo fuzz run action_log_parse",
"cross:test": "cargo test --manifest-path vm-engine/Cargo.toml -p vm-core -p vm-runtime && cargo test --release --manifest-path vm-engine/Cargo.toml -p vm-core -p vm-runtime",
"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",
"@vitest/coverage-v8": "^4.1.11",
"dependency-cruiser": "^18.2.0",
"eslint": "^10.9.1",
"turbo": "^2.10.12",
"typescript": "^5.9.3",
"typescript-eslint": "^8.69.0",
"vitest": "^4.1.11"
}
}