-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"name": "openchat-tauri",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"fix:gleam:mid": "cd gleam-src/middle && gleam fix",
"build:gleam:mid": "cd gleam-src/middle && gleam build",
"fix:gleam:pro": "cd gleam-src/protocol && gleam fix",
"build:gleam:pro": "cd gleam-src/protocol && gleam build",
"fix:gleam:all": "npm run fix:gleam:mid && npm run fix:gleam:pro",
"build:gleam:all": "npm run build:gleam:mid && npm run build:gleam:pro",
"tauri:dev": "npm run build:gleam:all && tauri dev",
"tauri:build": "npm run build:gleam:all && tauri build"
},
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"@tailwindcss/vite": "^4.1.7",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.1.7"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "~5.6.2",
"vite": "^6.0.3"
}
}