-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.62 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.62 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "sint-protocol",
"version": "0.1.0",
"private": true,
"description": "SINT Protocol — Security, permission, and economic enforcement layer for physical AI",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"demo": "pnpm --filter @sint/conformance-tests exec vitest run src/e2e-demo.test.ts --reporter=verbose",
"demo:interceptor-quickstart": "node ./examples/sint-pdp-interceptor-quickstart.mjs",
"cert:fixtures": "pnpm --filter ./packages/policy-gateway build && pnpm --filter ./packages/conformance-tests run test:fixtures && pnpm --filter ./packages/bridge-iot run test:fixtures && pnpm --filter ./sdks/typescript run test:contracts && pnpm --filter ./packages/persistence-postgres run test:fixtures",
"cert:bundle": "node ./scripts/generate-certification-bundle.mjs",
"nist:bundle": "node ./scripts/generate-nist-submission-bundle.mjs",
"benchmark:industrial": "pnpm --filter @sint/conformance-tests exec vitest run src/industrial-interoperability.test.ts src/industrial-benchmark-scenarios.test.ts --reporter=verbose",
"benchmark:ros2-loop": "pnpm --filter @sint/conformance-tests exec vitest run src/ros2-control-loop-latency.test.ts --reporter=verbose",
"benchmark:ros2-report": "node ./scripts/generate-ros2-control-loop-report.mjs",
"benchmark:report": "node ./scripts/generate-industrial-benchmark-report.mjs",
"community:starter-board": "node ./scripts/generate-community-starter-board.mjs",
"bench": "pnpm --filter @sint/gate-policy-gateway bench",
"sintctl": "pnpm --filter @sint/sintctl exec sintctl --help",
"stack:interface": "docker compose up --build gateway sint-interface postgres redis",
"stack:dev": "bash ./scripts/stack-up.sh dev",
"stack:edge": "bash ./scripts/stack-up.sh edge",
"stack:prod-lite": "bash ./scripts/stack-up.sh prod-lite",
"stack:gazebo-validation": "bash ./scripts/stack-up.sh gazebo-validation",
"stack:isaac-sim-validation": "bash ./scripts/stack-up.sh isaac-sim-validation",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/node": "^22.13.0",
"tsx": "^4.19.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"vitepress": "^1.6.4",
"vitest": "^3.0.0"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"overrides": {
"path-to-regexp": ">=8.4.0",
"picomatch": ">=4.0.4"
}
}
}