-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.29 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
{
"name": "acolyte",
"version": "0.27.2",
"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",
"dogfood": "bun run src/cli.ts stop; ACOLYTE_DEBUG=1 bun run src/cli.ts",
"run": "bun run src/cli.ts run",
"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",
"messages": "bun run scripts/build-messages.ts && bunx biome check --write src/i18n/generated",
"messages:check": "bun run messages && git diff --exit-code -- src/i18n/generated",
"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 messages:check && 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.5.2",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-reconciler": "^0.33.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.8",
"@ai-sdk/google": "^4.0.8",
"@ai-sdk/openai": "^4.0.8",
"@ai-sdk/provider": "^4.0.2",
"@ast-grep/napi": "^0.44.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"highlight.js": "11.11.1",
"lowlight": "3.3.0",
"react": "^19.2.7",
"react-reconciler": "^0.33.0",
"tiktoken": "^1.0.22",
"zod": "^4.4.3"
},
"overrides": {
"@hono/node-server": "2.1.0",
"fast-uri": "3.1.7",
"hono": "4.13.0",
"ip-address": "10.4.0",
"qs": "6.16.0"
}
}