flybrain/package.json
acamilo 660c3cf00d
Some checks failed
ci / node 22 (test + typecheck) (push) Has been cancelled
ci / rust stable (cargo test --workspace --release) (push) Has been cancelled
ci / infra/tests/lint.sh (push) Has been cancelled
ci / playwright apps/stage (allowed to fail) (push) Has been cancelled
flybrain v0.4.0: public tree (history retained privately)
2026-09-21 15:09:46 +00:00

16 lines
689 B
JSON

{
"name": "flybrain-workspace",
"private": true,
"type": "module",
"workspaces": ["packages/*", "apps/*", "services/*"],
"scripts": {
"test": "npm test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"ci:artifacts": "cd data/fafb-v783 && sha256sum -c ../../tools/artifact-checksums.txt",
"ci:rust": "cd services/flysim && cargo test --workspace --release",
"ci:lint": "infra/tests/lint.sh",
"ci:e2e": "npm run test:e2e --workspace @flybrain/stage",
"ci": "npm run ci:artifacts && npm test && npm run typecheck && npm run ci:rust && npm run ci:lint"
}
}