-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
54 lines (54 loc) · 1.72 KB
/
package.json
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
{
"name": "ollama-chat",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"clean-target": "rm -rf ./src-tauri/target",
"build:app:windows": "tauri build --target x86_64-pc-windows-msvc",
"build:app:silicon": "pnpm clean-target && tauri build --target aarch64-apple-darwin",
"build:app:intell": "pnpm clean-target && tauri build --target x86_64-apple-darwin",
"build:app:universal": "pnpm clean-target && tauri build --target universal-apple-darwin",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@tauri-apps/api": ">=2.0.0-rc.0",
"@tauri-apps/plugin-fs": "2.0.0-rc.0",
"@tauri-apps/plugin-shell": "2.0.0-rc.0",
"@tauri-apps/plugin-sql": "2.0.0-rc.0",
"axios": "^1.7.3",
"better-sqlite3": "^11.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.12",
"immer": "^10.1.1",
"marked": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.2",
"simple-core-state": "^0.0.20",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"util.promisify": "^1.1.2"
},
"devDependencies": {
"@tauri-apps/cli": ">=2.0.0-rc.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.2.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.9",
"typescript": "^5.2.2",
"vite": "^5.3.1"
}
}