-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
172 lines (172 loc) · 8.73 KB
/
Copy pathpackage.json
File metadata and controls
172 lines (172 loc) · 8.73 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "jawcode-monorepo",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"workspaces": {
"packages": [
"packages/*",
"python/robojwc/web"
],
"catalog": {
"@agentclientprotocol/sdk": "0.21.0",
"@anthropic-ai/sdk": "^0.94.0",
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.3",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@biomejs/biome": "^2.4.14",
"@bufbuild/protobuf": "^2.12.0",
"@bufbuild/protoc-gen-es": "^2.12.0",
"@mozilla/readability": "^0.6.0",
"@napi-rs/cli": "3.6.2",
"@jawcode-dev/stats": "1.0.2",
"@jawcode-dev/agent-core": "1.0.2",
"@jawcode-dev/ai": "1.0.2",
"@jawcode-dev/bridge-client": "1.0.2",
"@jawcode-dev/coding-agent": "1.0.2",
"@jawcode-dev/natives": "1.0.2",
"@jawcode-dev/tui": "1.0.2",
"@jawcode-dev/utils": "1.0.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^2.0.0",
"@opentelemetry/sdk-trace-base": "^2.0.0",
"@puppeteer/browsers": "^2.13.0",
"@tailwindcss/node": "^4.2.4",
"@tailwindcss/vite": "^4.2.4",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/bun": "^1.3.14",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/turndown": "5.0.6",
"@typescript/native-preview": "7.0.0-dev.20260505.1",
"@xterm/headless": "^6.0.0",
"beautiful-mermaid": "^1.1.3",
"chalk": "^5.6.2",
"chart.js": "^4.5.1",
"date-fns": "^4.1.0",
"diff": "^9.0.0",
"fflate": "0.8.2",
"handlebars": "^4.7.9",
"linkedom": "^0.18.12",
"lint-staged": "^16.4.0",
"lru-cache": "11.3.6",
"lucide-react": "^1.14.0",
"marked": "^18.0.3",
"markit-ai": "0.5.3",
"openai": "^6.36.0",
"partial-json": "^0.1.7",
"postcss": "^8.5.14",
"prettier": "^3.8.3",
"puppeteer-core": "^24.42.0",
"react": "19.2.5",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.5",
"regexp-tree": "^0.1.27",
"solid-js": "^1.9.12",
"tailwindcss": "^4.2.4",
"turndown": "7.2.4",
"turndown-plugin-gfm": "1.0.2",
"typescript": "^6.0.3",
"vite": "^5.4.14",
"vite-plugin-solid": "^2.11.6",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "4.4.3"
}
},
"overrides": {},
"scripts": {
"install:dev": "bun install && bun --cwd=packages/coding-agent link && bun --cwd=packages/ai link && bun packages/coding-agent/src/cli.ts setup defaults",
"install:defaults": "bun packages/coding-agent/src/cli.ts setup defaults",
"setup": "bun install && node packages/jwc/scripts/bootstrap-cli-jaw-home.cjs && bun run install:defaults",
"dev": "bun --cwd=packages/coding-agent src/cli.ts",
"stats": "bun --cwd=packages/coding-agent src/cli.ts stats",
"build": "bun run --workspaces --if-present build",
"build:native": "bun --cwd=packages/natives run build",
"test": "bun run --parallel test:ts test:rs",
"test:ts": "bun run test:release && bun run --workspaces --if-present test -- --only-failures",
"test:release": "bun test scripts/release-publish-order.test.ts",
"generate-schemas": "bun scripts/generate-json-schemas.ts",
"check:schemas": "bun scripts/generate-json-schemas.ts --check",
"test:rs": "bun scripts/run-rs-task.ts test:rs",
"check": "bun run --parallel check:ts check:rs",
"check:ts": "bun run check:tools && bun run check:node20-baseline && bun run check:schemas && bun run check:jwc-ui && bun run --workspaces --if-present check",
"check:tools": "biome check . --no-errors-on-unmatched",
"check:node20-baseline": "bun scripts/check-node20-baseline.ts",
"check:rs": "bun scripts/run-rs-task.ts check:rs",
"lint": "bun run --parallel lint:ts lint:rs",
"lint:ts": "bun run --parallel lint:tools && bun run --workspaces --if-present lint",
"lint:tools": "biome lint . --no-errors-on-unmatched",
"lint:rs": "bun scripts/run-rs-task.ts lint:rs",
"fmt": "bun run --parallel fmt:ts fmt:rs",
"fmt:ts": "bun run fmt:tools && bun run --workspaces --if-present fmt",
"fmt:tools": "biome format --write . --no-errors-on-unmatched",
"fmt:rs": "bun scripts/run-rs-task.ts fmt:rs",
"fix": "bun run --parallel fix:ts fix:rs",
"fix:all": "bun run --parallel fix:ts:all fix:rs",
"fix:ts": "bun run fix:tools && bun run --workspaces --if-present fix",
"fix:ts:all": "bun run fix:tools:all && bun run --workspaces --if-present fix",
"fix:tools": "biome check --write --unsafe --changed --no-errors-on-unmatched .",
"fix:tools:all": "biome check --write --unsafe --no-errors-on-unmatched .",
"fix:rs": "bun scripts/run-rs-task.ts fix:rs",
"ci:check:full": "bun run check:ts",
"ci:build:native": "bun scripts/ci-build-native.ts",
"ci:test:full": "bun run test",
"ci:test:smoke": "bun packages/coding-agent/src/cli.ts --version && bun packages/coding-agent/src/cli.ts --help && bun packages/coding-agent/src/cli.ts stats --help && bun packages/coding-agent/src/cli.ts --smoke-test",
"ci:test:install-methods": "bash scripts/install-tests/run-ci.sh",
"ci:release:build-binaries": "bun scripts/ci-release-build-binaries.ts",
"ci:release:publish": "bun scripts/ci-release-publish.ts",
"bench:gen-fixtures": "bun --cwd=packages/typescript-edit-benchmark run src/generate.ts --typescript-dir /tmp/typescript-source --count-per-type 8",
"bench:edit": "bun --cwd=packages/typescript-edit-benchmark run start",
"bench:orchestration-tokens": "bun --cwd=packages/orchestration-token-benchmark run start",
"bench:orchestration-tokens:live": "bun --cwd=packages/orchestration-token-benchmark run bench:live",
"stats:sync": "python3 scripts/session-stats/sync.py",
"stats:tools": "python3 scripts/session-stats/analyze.py tools",
"stats:edits": "python3 scripts/session-stats/analyze.py edits",
"stats:followups": "python3 scripts/session-stats/analyze.py followups",
"test:py": "python3 -m pytest -x python/jwc-rpc/tests python/robojwc/tests",
"robojwc:install": "pip install -e 'python/robojwc[dev]'",
"robojwc:serve": "python3 -m robojwc serve",
"robojwc:test:integration": "ROBJWC_INTEGRATION=1 python3 -m pytest -x python/robojwc/tests/test_worker_smoke.py",
"pi:image": "docker build -t \"${PI_IMAGE:-jawcode/pi:dev}\" .",
"pi:run": "docker run --rm -it \"${PI_IMAGE:-jawcode/pi:dev}\"",
"robojwc:build": "bun run pi:image && docker compose --project-directory python/robojwc build",
"robojwc:rebuild": "bun run pi:image && docker compose --project-directory python/robojwc build --no-cache",
"robojwc:up": "docker compose --project-directory python/robojwc up -d",
"robojwc:down": "docker compose --project-directory python/robojwc down",
"robojwc:restart": "docker compose --project-directory python/robojwc restart robojwc",
"robojwc:logs": "docker compose --project-directory python/robojwc logs -f robojwc",
"robojwc:dev": "bun run robojwc:build && bun run robojwc:up && bun run robojwc:logs",
"robojwc:reset": "docker compose --project-directory python/robojwc down -v && (docker image rm \"${PI_IMAGE:-jawcode/pi:dev}\" || true)",
"robojwc:web:dev": "bun --cwd=python/robojwc/web run dev",
"robojwc:web:build": "bun --cwd=python/robojwc/web run build",
"lint:py": "ruff check python && ruff format --check python",
"fix:py": "ruff check --fix python && ruff format python",
"prepublishOnly": "bun run check",
"prepare": "bun --cwd=packages/coding-agent run generate-docs-index",
"publish": "bun run prepublishOnly && npm publish -ws --access public",
"publish:dry": "bun run prepublishOnly && npm publish -ws --access public --dry-run",
"release": "bun scripts/release.ts",
"generate-models": "bun --cwd=packages/ai run generate-models",
"generate-docs-index": "bun --cwd=packages/coding-agent run generate-docs-index",
"generate-template": "bun --cwd=packages/coding-agent run generate-template",
"check-spoofed-versions": "bun scripts/check-spoofed-versions.ts",
"check:no-github-workflows": "bun scripts/check-no-github-workflows.ts",
"check:jwc-ui": "bun scripts/verify-jwc-ui-redesign.ts && bun scripts/rebrand-inventory.ts --strict",
"inventory:legacy-names": "bun scripts/legacy-name-inventory.ts",
"validate:jwc-release": "bun scripts/jwc-release-validation.ts"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"prettier": "catalog:",
"@types/bun": "catalog:",
"@typescript/native-preview": "catalog:",
"typescript": "catalog:",
"lint-staged": "catalog:"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc,css}": "biome check --write --no-errors-on-unmatched"
}
}