forked from runxhq/runx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 6.23 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 6.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "runx",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.18.2",
"engines": {
"node": ">=20"
},
"runx": {
"packets": [
"./dist/packets/*.schema.json"
]
},
"scripts": {
"build": "pnpm schemas:generate && node scripts/build-workspace.mjs --pack",
"build:pack": "pnpm schemas:generate && node scripts/build-workspace.mjs --pack",
"schemas:generate": "tsx scripts/generate-contract-schemas.ts",
"contracts:schemas:generate": "pnpm schemas:generate",
"contracts:schemas:check": "tsx scripts/generate-contract-schemas.ts --check",
"cli:link-global": "pnpm build && node scripts/link-global-cli.mjs",
"cli:unlink-global": "node scripts/link-global-cli.mjs --unlink",
"cli:check-global": "node scripts/link-global-cli.mjs --check",
"cli:link-dev-native": "cargo build --manifest-path crates/Cargo.toml -p runx-cli && node scripts/link-dev-native-cli.mjs",
"cli:check-dev-native": "node scripts/link-dev-native-cli.mjs --check",
"cli:unlink-dev-native": "node scripts/link-dev-native-cli.mjs --unlink",
"dogfood:native-core": "sh scripts/dogfood-native-core.sh",
"dogfood:core-skills": "node scripts/dogfood-core-skills.mjs",
"dogfood:github-issue-to-pr": "node scripts/dogfood-github-issue-to-pr.mjs",
"thread:reconcile-sync": "node scripts/thread-reconcile-sync.mjs",
"live:issue-to-pr": "node scripts/dogfood-github-issue-to-pr.mjs --preflight",
"docs:api": "tsx scripts/gen-api-index.ts",
"docs:exit-codes": "tsx scripts/check-cli-exit-codes.ts",
"authoring:check-package-contract": "node scripts/check-authoring-package-contract.mjs",
"bindings:check": "node scripts/check-upstream-skill-bindings.mjs",
"commands:check-drift": "node scripts/check-command-drift.mjs",
"release:version:check": "tsx scripts/set-release-version.ts --check",
"release:smoke-live": "node scripts/smoke-released-cli-live.mjs",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"test": "node scripts/test-workspace.mjs",
"test:fast": "vitest run --config vitest.fast.config.ts",
"test:heavy:graph": "node scripts/test-workspace.mjs --testTimeout 30000 --hookTimeout 30000 tests/payment-graph-harness.test.ts tests/examples/hello-graph.test.ts",
"boundary:check": "node scripts/check-boundaries.mjs",
"test:boundary": "node scripts/test-boundaries.mjs",
"tests:integration-modules:check": "node scripts/check-integration-test-modules.mjs",
"cutover:legacy-check": "node scripts/check-runtime-cutover-legacy.mjs --final",
"fixtures:kernel:check": "tsx scripts/generate-kernel-parity-fixtures.ts --check",
"fixtures:kernel:generate": "tsx scripts/generate-kernel-parity-fixtures.ts",
"fixtures:kernel:keys": "tsx scripts/check-fixture-key-order.ts",
"fixtures:kernel:validate": "tsx scripts/validate-kernel-fixture-schemas.ts",
"fixtures:contracts:check": "tsx scripts/generate-rust-contract-fixtures.ts --check",
"fixtures:contracts:generate": "tsx scripts/generate-rust-contract-fixtures.ts",
"fixtures:contracts:keys": "tsx scripts/check-contract-fixture-key-order.ts fixtures/contracts",
"fixtures:harness:check": "tsx scripts/generate-rust-harness-fixtures.ts --check",
"fixtures:harness:generate": "tsx scripts/generate-rust-harness-fixtures.ts --write",
"fixtures:harness:summary": "tsx scripts/generate-rust-harness-fixtures.ts --check --summary-json",
"fixtures:harness:summary-check": "node scripts/check-inline-harness-summary-snapshot.mjs",
"fixtures:adapters:a2a:check": "tsx scripts/generate-a2a-adapter-fixtures.ts --check",
"fixtures:adapters:agent:check": "tsx scripts/generate-agent-adapter-fixtures.ts --check",
"fixtures:skill-author-runtime:check": "cargo test --manifest-path crates/Cargo.toml -p runx-runtime --features cli-tool --test integration -- skill_author_runtime_fixtures --nocapture",
"fixtures:cli-parity:check": "tsx scripts/generate-cli-feature-parity.ts --check --canonical-only",
"fixtures:cli-help:check": "tsx scripts/generate-cli-feature-parity.ts --check-help-coverage --canonical-only",
"rust:check": "node scripts/check-rust-kernel-parity.mjs",
"rust:crate-graph": "node scripts/check-rust-crate-graph.mjs",
"rust:style": "node scripts/check-rust-core-style.mjs",
"runtime:architecture-check": "node scripts/check-runtime-architecture-boundaries.mjs",
"harness:sweep": "node scripts/harness-sweep.mjs",
"perf:runtime:capture": "node scripts/runtime-throughput.mjs capture",
"perf:runtime:check": "node scripts/runtime-throughput.mjs check",
"perf:compare": "node scripts/perf-compare.mjs",
"perf:harness-check": "node scripts/check-runtime-perf-harness.mjs",
"stress:runtime:mcp": "cargo test --manifest-path crates/Cargo.toml -p runx-runtime --features cli-tool,catalog,mcp --test integration -- mcp_adapter mcp_server",
"stress:runtime:cli-tool": "cargo test --manifest-path crates/Cargo.toml -p runx-runtime --features cli-tool,catalog --test integration -- cli_tool_contract",
"stress:runtime:external-adapter": "cargo test --manifest-path crates/Cargo.toml -p runx-runtime --features cli-tool,catalog,external-adapter --test integration -- external_adapter",
"stress:runtime:fanout": "cargo test --manifest-path crates/Cargo.toml -p runx-runtime --features cli-tool,catalog,mcp --test integration -- fanout_parity fanout_proptest",
"receipts:importer-audit": "tsx scripts/check-receipt-importers.ts",
"receipts:canonical-check": "node scripts/check-receipt-canonical-production-path.mjs",
"demos:check": "node scripts/check-demos.mjs",
"x402:dogfood:local": "node scripts/x402-local-dogfood.mjs",
"x402:conformance": "node scripts/x402-upstream-conformance.mjs --check",
"x402:interop": "node scripts/x402-interop.mjs --target x402-rs --check",
"verify:fast": "node scripts/verify-fast.mjs",
"verify:fast:plan-check": "node scripts/check-verify-fast-plan.mjs",
"lint": "pnpm typecheck"
},
"devDependencies": {
"@runxhq/authoring": "workspace:*",
"@runxhq/contracts": "workspace:^0.3.0",
"@runxhq/host-adapters": "workspace:^0.1.1",
"@types/node": "^24.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"yaml": "^2.8.3"
}
}