forked from Yeachan-Heo/gajae-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 9.08 KB
/
Copy pathpackage.json
File metadata and controls
174 lines (174 loc) · 9.08 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
173
174
{
"name": "gajae-code",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"workspaces": {
"packages": [
"packages/*",
"python/robogjc/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",
"@gajae-code/stats": "0.7.3",
"@gajae-code/agent-core": "0.7.3",
"@gajae-code/ai": "0.7.3",
"@gajae-code/bridge-client": "0.7.3",
"@gajae-code/coding-agent": "0.7.3",
"@gajae-code/natives": "0.7.3",
"@gajae-code/tui": "0.7.3",
"@gajae-code/utils": "0.7.3",
"@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 run dev:link && bun packages/coding-agent/src/cli.ts setup defaults",
"install:defaults": "bun packages/coding-agent/src/cli.ts setup defaults",
"dev": "bun --cwd=packages/coding-agent src/cli.ts",
"dev:link": "bun scripts/dev-link.ts",
"dev:doctor": "bun scripts/dev-link.ts --check",
"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",
"generate-plugins": "bun scripts/generate-gjc-plugins.ts",
"check:plugins": "bun scripts/generate-gjc-plugins.ts --check && bun scripts/verify-gjc-plugins.ts",
"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:plugins && bun run check:gjc-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:composer-stability-v3": "bun packages/agent/bench/composer-stability-v3.ts --mock --seed 42 -n 5 --model grok-build/grok-composer-2.5-fast --baseline-model openai-codex/gpt-5.5:low",
"bench:composer-stability-v3:trace": "bun packages/agent/bench/composer-stability-v3.ts --trace --trace-file packages/agent/test/fixtures/composer-stability-v3/traces/parity.json",
"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/gjc-rpc/tests python/robogjc/tests",
"robogjc:install": "pip install -e 'python/robogjc[dev]'",
"robogjc:serve": "python3 -m robogjc serve",
"robogjc:test:integration": "ROBGJC_INTEGRATION=1 python3 -m pytest -x python/robogjc/tests/test_worker_smoke.py",
"pi:image": "docker build -t \"${PI_IMAGE:-gajae-code/pi:dev}\" .",
"pi:run": "docker run --rm -it \"${PI_IMAGE:-gajae-code/pi:dev}\"",
"robogjc:build": "bun run pi:image && docker compose --project-directory python/robogjc build",
"robogjc:rebuild": "bun run pi:image && docker compose --project-directory python/robogjc build --no-cache",
"robogjc:up": "docker compose --project-directory python/robogjc up -d",
"robogjc:down": "docker compose --project-directory python/robogjc down",
"robogjc:restart": "docker compose --project-directory python/robogjc restart robogjc",
"robogjc:logs": "docker compose --project-directory python/robogjc logs -f robogjc",
"robogjc:dev": "bun run robogjc:build && bun run robogjc:up && bun run robogjc:logs",
"robogjc:reset": "docker compose --project-directory python/robogjc down -v && (docker image rm \"${PI_IMAGE:-gajae-code/pi:dev}\" || true)",
"robogjc:web:dev": "bun --cwd=python/robogjc/web run dev",
"robogjc:web:build": "bun --cwd=python/robogjc/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:gjc-ui": "bun scripts/verify-gjc-ui-redesign.ts && bun scripts/rebrand-inventory.ts --strict"
},
"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"
}
}