-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "puzzle-editor",
"private": true,
"version": "1.0.0-beta",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:compile": "tsc -p electron/tsconfig.json",
"electron:dev": "npm run electron:compile && concurrently -k \"npm run dev\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "npm run build && npm run electron:compile && electron-builder",
"electron:start": "npm run electron:compile && electron ."
},
"dependencies": {
"chokidar": "^4.0.3",
"lucide-react": "^0.556.0",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.1.2",
"electron": "^34.5.8",
"electron-builder": "^25.1.8",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.starrytree.puzzleeditor",
"productName": "Puzzle Editor",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"win": {
"target": [
"nsis"
],
"icon": "public/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "public/icon.ico",
"uninstallerIcon": "public/icon.ico",
"installerHeaderIcon": "public/icon.ico"
},
"mac": {
"target": [
"dmg"
],
"icon": "public/icon.icns"
},
"linux": {
"target": [
"AppImage"
],
"icon": "public/icon.png"
}
}
}