-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "sharpify",
"version": "0.1.0",
"private": true,
"description": "Minimalist desktop image compression app powered by sharp.",
"type": "module",
"engines": {
"node": ">=24 <27"
},
"workspaces": [
"processor"
],
"scripts": {
"dev": "vite",
"build:web": "tsc --noEmit && vite build",
"build:processor": "npm run build --workspace processor",
"prepare:runtime": "node scripts/prepare-runtime.mjs",
"build": "npm run build:processor && npm run prepare:runtime && npm run build:web",
"test:processor": "npm run test --workspace processor",
"test": "npm run test:processor && tsc --noEmit",
"tauri:dev": "tauri dev",
"tauri:build": "npm run build && tauri build"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-opener": "^2.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"typescript": "^6.0.3",
"vite": "^8.0.14"
}
}