-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.04 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.04 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
{
"name": "acolyte",
"version": "0.20.0",
"license": "MIT",
"type": "module",
"bin": {
"acolyte": "./src/cli.ts"
},
"scripts": {
"prepare": "bash scripts/setup-hooks.sh",
"start": "bun run src/cli.ts",
"dev": "ACOLYTE_SERVER_RESTART=1 ./scripts/with-server.sh serve:watch bun run src/cli.ts",
"run": "bun run src/cli.ts run",
"behavior:run": "bun run scripts/run-behavior.ts",
"perf:run": "bun run scripts/run-perf.ts",
"memory-bench:run": "bun run scripts/run-memory-bench.ts",
"serve": "bun --env-file=.env run src/server.ts",
"serve:watch": "bun --watch --env-file=.env run src/server.ts",
"wait:server": "bun run scripts/wait-server.ts",
"format": "bunx biome format --write .",
"lint": "bunx biome check --error-on-warnings .",
"typecheck": "bunx tsc --noEmit",
"test": "bun test",
"test:unit": "bash scripts/run-test-suite.sh unit",
"test:coverage": "bun run scripts/run-unit-coverage.ts",
"test:tui": "bash scripts/run-test-suite.sh tui",
"test:int": "bash scripts/run-test-suite.sh int",
"test:perf": "bash scripts/run-test-suite.sh perf",
"audit": "bun audit",
"verify": "bun run lint && bun run typecheck && bun test && bun run audit",
"benchmark": "bun run scripts/benchmark.ts",
"release": "bash scripts/release.sh"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-reconciler": "^0.33.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/google": "^3.0.53",
"@ai-sdk/openai": "^3.0.48",
"@ai-sdk/provider": "^3.0.8",
"@ast-grep/lang-go": "^0.0.6",
"@ast-grep/lang-python": "^0.0.6",
"@ast-grep/lang-rust": "^0.0.7",
"@ast-grep/napi": "^0.42.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.12.14",
"react": "^19.2.4",
"react-reconciler": "^0.33.0",
"tiktoken": "^1.0.22",
"zod": "^4.3.6"
},
"overrides": {
"hono": "^4.12.14"
}
}