-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.54 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.54 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
{
"name": "dbchat",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "bun --watch web.ts",
"dev.native": "cd native && bun dev",
"build": "vue-tsc -b && vite build",
"build.native": "cd native && bun run build",
"bundle": "NODE_ENV=production bun run build && bun build --compile --minify --sourcemap ./native.ts --outfile native/server",
"bundle.win_x64": "bun bundle -- --target=bun-windows-x64",
"bundle.mac_arm64": "bun bundle -- --target=bun-darwin-arm64",
"bundle.mac_x64": "bun bundle -- --target=bun-darwin-x64",
"bundle.linux_x64": "bun bundle -- --target=bun-linux-x64",
"css.upgrade": "bunx @tailwindcss/upgrade@latest",
"preview": "NODE_ENV=production bun web.ts",
"tree": "bunx tree-cli -l 10 --ignore node_modules/"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.6",
"@types/prismjs": "^1.26.5",
"marked": "^15.0.11",
"prismjs": "^1.30.0",
"tailwindcss": "^4.1.6",
"vue": "^3.5.13",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@ai-sdk/google": "^1.2.17",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/xai": "^1.2.16",
"@tauri-apps/plugin-dialog": "^2.2.1",
"@tauri-apps/plugin-http": "^2.4.3",
"@types/bun": "^1.2.13",
"@types/pg": "^8.15.1",
"@vitejs/plugin-vue": "^5.2.4",
"ai": "^4.3.15",
"mysql2": "^3.14.1",
"pathern": "^0.3.1",
"pg": "^8.15.6",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vue-tsc": "^2.2.10",
"zod": "^3.24.4"
}
}