-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 972 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 972 Bytes
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
{
"name": "@pinkpixel/gumdrop-studio",
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler pages deploy dist",
"deploy:production": "npm run build && wrangler pages deploy dist --branch=main",
"tauri:dev": "tauri dev",
"tauri:build": "NO_STRIP=YES tauri build"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-store": "^2.4.2",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.0",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.24",
"baseline-browser-mapping": "^2.9.19",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1",
"wrangler": "^4.65.0"
}
}