-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.03 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
{
"name": "sqlbot",
"version": "2.3.0",
"private": true,
"type": "module",
"description": "Talk to your databases in natural language. A single binary: Bun server + React UI, no Node and no native addons.",
"bin": {
"sqlbot": "./src/cli.ts"
},
"scripts": {
"start": "bun src/cli.ts",
"dev": "bun --watch src/cli.ts --no-open",
"dev:scratch": "SQLBOT_CONFIG_DIR=./.scratch bun --watch src/cli.ts --no-open",
"dev:web": "cd web && bun run dev",
"build:web": "cd web && bun install && bun run build && cd .. && bun scripts/embed.ts",
"build": "bun run build:web && bun build-bin.ts",
"build:all": "bun run build:web && bun build-bin.ts --all",
"gen:catalog": "bun src/catalog/generate.ts",
"hash:web": "bun scripts/source-hash.ts",
"hash:check": "bun scripts/source-hash.ts --check",
"typecheck": "tsc --noEmit",
"typecheck:web": "cd web && bunx tsc --noEmit",
"test": "bun test",
"check": "bun run typecheck && bun run test && bun run hash:check"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.47",
"@ai-sdk/cerebras": "^2",
"@ai-sdk/deepseek": "^2",
"@ai-sdk/gateway": "^3",
"@ai-sdk/google": "^3.0.1",
"@ai-sdk/groq": "^3.0.24",
"@ai-sdk/mistral": "^3",
"@ai-sdk/openai": "^3.0.29",
"@ai-sdk/openai-compatible": "^2.0.31",
"@ai-sdk/xai": "^3",
"@openrouter/ai-sdk-provider": "^2",
"@trpc/server": "^11.8.1",
"ai": "^6.0.3",
"configstore": "^8.0.0",
"drizzle-orm": "^0.44.7",
"mysql2": "^3.17.1",
"node-sql-parser": "^5.3.13",
"oboe-ai-provider": "^0.1.1",
"pg": "^8.18.0",
"resumable-stream": "^2.2.12",
"superjson": "^2.2.6",
"uuid": "^13.0.0",
"zhipu-ai-provider": "^0.4.0",
"zod": "4"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/pg": "^8.15.5",
"typescript": "^5.9.3"
}
}