{ "name": "zero-lang-workspace", "description": "Workspace for the Zero language docs, native compiler, examples, and editor tooling.", "version": "0.3.4", "private": true, "license": "Apache-2.0", "packageManager": "pnpm@11.1.3", "engines": { "node": ">=24" }, "scripts": { "check": "pnpm --silent run native:smoke", "agent:checks": "bash scripts/agent-checks.sh", "build": "turbo run build", "build:scripts": "tsc -p scripts/tsconfig.json", "build:test": "tsc -p tests/tsconfig.json", "conformance": "pnpm run conformance:sandbox", "conformance:local": "ZERO_NATIVE_TEST_ALLOW_LOCAL=1 node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/validation-suite.mts conformance", "provenance:guardrails": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/provenance-guardrails.mts", "native:contracts": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/native-contracts.mts", "type-core:test": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/type-core-smoke.mts", "mir-verifier:test": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/mir-verifier-smoke.mts", "program-graph:test": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/program-graph-smoke.mts && node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/program-graph-parity.mts", "program-graph:parity": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/program-graph-parity.mts", "repository-graph:check": "pnpm run repository-graph:verify-projection && pnpm run repository-graph:fixture && pnpm run repository-graph:scale", "repository-graph:fixture": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/repository-graph-fixture-check.mts", "repository-graph:scale": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/repository-graph-scale.mts", "repository-graph:verify-projection": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/repository-graph-verify-projection.mts --target linux-musl-x64", "canonical-text:test": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/canonical-text-smoke.mts", "conformance:sandbox": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/native-test-sandbox.mts -- env ZERO_CONFORMANCE_CHECK_JOBS=4 pnpm run conformance:local", "command-contracts": "pnpm run command-contracts:sandbox", "command-contracts:local": "ZERO_NATIVE_TEST_ALLOW_LOCAL=1 node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/validation-suite.mts command-contracts", "command-contracts:sandbox": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/native-test-sandbox.mts -- pnpm run command-contracts:local", "workspace:checks": "bash scripts/workspace-checks.sh", "docs:install": "pnpm install", "docs:dev": "turbo run dev --filter=./docs", "docs:build": "turbo run build --filter=./docs", "docs:start": "turbo run start --filter=./docs", "extension:install:cursor": "pnpm --filter=./extensions/vscode run install:cursor", "extension:test": "turbo run test --filter=./extensions/vscode", "native:install": "make -C native/zero-c install-local", "native:smoke": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/native-smoke.mts", "native:sanitize": "bash scripts/sanitizer-smoke.sh", "rosetta:local": "make -C native/zero-c && node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/rosetta.mts", "compiler:metrics": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/compiler-metrics.mts", "graph:perf": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/graph-build-perf.mts", "graph:perf:budgets": "ZERO_GRAPH_BUILD_PERF_BUDGET=fail node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/graph-build-perf.mts", "llvm:profile": "make -C native/zero-c && node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/llvm-profile-smoke.mts", "stdlib:binary-graphs": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/convert-stdlib-graphs-to-binary.mts", "stdlib:contracts": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/stdlib-contracts.mts", "stdlib:targets": "make -C native/zero-c && node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/stdlib-target-matrix.mts", "reliability:smoke": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/reliability-smoke.mts", "examples:gate": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/examples-gate.mts", "native:test": "pnpm run native:test:sandbox", "native:test:local": "ZERO_NATIVE_TEST_ALLOW_LOCAL=1 bash scripts/test-native.sh", "native:test:sandbox": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/native-test-sandbox.mts", "bench": "bash scripts/bench.sh", "bench:local": "ZERO_BENCH_MODE=local bash scripts/bench.sh", "bench:budgets": "ZERO_BENCH_BUDGET=fail bash scripts/bench.sh", "agent:demo": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/agent-repair-demo.mts", "evals": "node scripts/run-evals.mjs", "evals:build": "turbo run build --filter=./evals", "evals:test": "turbo run test --filter=./evals", "zls": "node --experimental-strip-types --disable-warning=ExperimentalWarning scripts/zls.mts", "test:zero": "make -C native/zero-c && pnpm --silent run build:scripts && pnpm --silent run build:test && node --test .zero/test-js/*.test.js", "test": "pnpm run conformance && pnpm run native:test && pnpm run test:zero && pnpm run zls -- --self-test && pnpm run agent:demo && pnpm run extension:test", "test:packages": "turbo run test", "zero": "bin/zero" }, "devDependencies": { "@types/node": "^25.9.0", "@vercel/sandbox": "^1.10.2", "turbo": "^2.9.14", "typescript": "^6.0.3" } }