-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "code-smith",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"worker": "bun run src/worker.ts",
"kind:up": "bash scripts/kind/up.sh",
"kind:down": "bash scripts/kind/down.sh",
"kind:port-forward": "bash scripts/kind/port-forward.sh",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"ci": "biome ci . && tsc --noEmit && bun test"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/bun": "latest",
"@types/picomatch": "^4.0.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "latest",
"@gitbeaker/rest": "latest",
"@google/generative-ai": "^0.24.1",
"@logtape/hono": "^2.0.4",
"@logtape/logtape": "^2.0.4",
"bullmq": "^5.71.0",
"hono": "^4.12.8",
"openai": "^6.32.0",
"picomatch": "^4.0.4",
"zod": "latest"
}
}