-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "ccload-client",
"private": true,
"version": "0.1.7",
"type": "module",
"license": "MIT",
"description": "Desktop client for the ccLoad multi-channel LLM gateway",
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"tauri": "tauri",
"dev:renderer": "vite",
"build:renderer": "tsc --noEmit && vite build",
"typecheck": "tsc --noEmit",
"check:readme-images": "node scripts/check-readme-images.mjs",
"kernel:build": "node scripts/build-kernel.mjs",
"kernel:fetch": "node scripts/fetch-kernel.mjs"
},
"dependencies": {
"@tanstack/react-query": "5.90.3",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-dialog": "2.7.2",
"@tauri-apps/plugin-opener": "2.5.0",
"clsx": "2.1.1",
"lucide-react": "0.542.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "3.3.1"
},
"devDependencies": {
"@tauri-apps/cli": "2.11.4",
"@types/node": "20.19.9",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"postcss": "8.4.49",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"vite": "6.0.7"
}
}