-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 4.51 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 4.51 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
{
"name": "prx",
"private": true,
"type": "module",
"license": "PolyForm-Noncommercial-1.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"pr-state": "bun run packages/prx/scripts/pr_state.ts",
"prx:build": "bun install && mkdir -p dist && bun packages/prx/scripts/prx-compile.ts dist/prx",
"prx:build:linux-arm64": "bun install && mkdir -p dist && bun packages/prx/scripts/prx-compile.ts dist/prx-linux-arm64 --target bun-linux-arm64",
"slack-scout:build": "mkdir -p dist && bun build --compile packages/prx/src/slack/bin.ts --outfile dist/slack-scout",
"health": "bun run packages/prx/scripts/code-health.ts",
"jsr:manifest": "bun run packages/prx/scripts/gen-jsr-manifest.ts",
"jsr:publish": "bun run packages/prx/scripts/jsr-publish.ts",
"jsr:status": "bun run packages/prx/scripts/gen-jsr-status.ts",
"jsr:status:check": "bun run packages/prx/scripts/gen-jsr-status.ts --check",
"site:build": "bun run packages/prx/scripts/build-site.ts",
"typecov": "type-coverage --strict --at-least 98 --ignore-files '**/*.test.ts'",
"front-desk:coverage": "bun run packages/prx/scripts/front-desk-coverage.ts",
"front-desk:coverage:check": "bun run packages/prx/scripts/front-desk-coverage.ts --check",
"doctor:agents": "bun run packages/prx/scripts/agent_doctor.ts",
"doctor:agents:json": "bun run packages/prx/scripts/agent_doctor.ts --format json",
"doctor:agents:strict": "bun run packages/prx/scripts/agent_doctor.ts --strict",
"snapshot:help:check": "bun test packages/prx/test/scripts/cli_help_snapshot.test.ts packages/prx/test/pr-state/help/help.snapshot.test.ts",
"snapshot:help:refresh": "bun run snapshot:help:check -- -u",
"schemas:export": "bun run packages/prx/scripts/pr_state.ts schemas",
"schemas:check": "bun run packages/prx/scripts/pr_state.ts schemas --check",
"openapi:render": "bun run packages/prx/scripts/gen-openapi.ts",
"openapi:check": "bun run packages/prx/scripts/gen-openapi.ts --check",
"features:render": "bun run packages/prx/scripts/pr_state.ts features",
"features:check": "bun run packages/prx/scripts/pr_state.ts features --check",
"community:render": "bun run packages/prx/scripts/pr_state.ts docs --only community",
"community:check": "bun run packages/prx/scripts/pr_state.ts docs --only community --check",
"jsonld:render": "bun run packages/prx/scripts/pr_state.ts docs --only jsonld",
"jsonld:check": "bun run packages/prx/scripts/pr_state.ts docs --only jsonld --check",
"cli:render": "bun run packages/prx/scripts/pr_state.ts docs --only cli",
"readme:render": "bun run packages/prx/scripts/pr_state.ts docs --only readme",
"cli:check": "bun run packages/prx/scripts/pr_state.ts docs --only cli --check",
"readme:check": "bun run packages/prx/scripts/pr_state.ts docs --only readme --check",
"claude-context:render": "bun run packages/prx/scripts/pr_state.ts docs --only claude-context",
"claude-context:check": "bun run packages/prx/scripts/pr_state.ts docs --only claude-context --check",
"docs:render": "bun run packages/prx/scripts/pr_state.ts docs",
"docs:check": "bun run packages/prx/scripts/pr_state.ts docs --check",
"typecheck": "bunx tsc --noEmit",
"format": "biome format .",
"format:write": "biome format --write .",
"lint": "biome lint .",
"check": "biome check .",
"check:write": "biome check --write .",
"ci:act": "packages/prx/scripts/local-ci-act",
"test": "bun test",
"test:dolt-smoke": "PRX_DOLT_SMOKE=1 bun test packages/prx/test/beads/hydrate.test.ts",
"changeset": "bunx @changesets/cli@^2.27",
"version-packages": "bunx @changesets/cli@^2.27 version && bun run jsr:versions && bun run jsr:manifest && bun run jsr:status",
"release": "bunx @changesets/cli@^2.27 publish",
"jsr:versions": "bun run packages/prx/scripts/jsr-version-sync.ts --write",
"jsr:versions:check": "bun run packages/prx/scripts/jsr-version-sync.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.177",
"@bounded-systems/machine-schema": "npm:@jsr/bounded-systems__machine-schema@^0.3.0",
"@bounded-systems/prx-config": "workspace:*",
"@statelyai/inspect": "^0.7.1",
"xstate": "^5.32.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/bun": "^1.3.14",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"dependency-cruiser": "^17.4.3",
"knip": "^6.16.1",
"marked": "^18.0.5",
"ts-morph": "^28.0.0",
"type-coverage": "^2.29.7",
"typescript": "^6.0.3"
}
}