-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.4 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
{
"name": "desktop-pet-inosuke",
"version": "0.1.2",
"private": true,
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "concurrently -k \"vite --host 127.0.0.1\" \"wait-on http://127.0.0.1:5173 && electron .\"",
"build": "tsc && vite build",
"dist": "npm run build && electron-builder --win dir",
"dist:portable": "npm run build && electron-builder --win portable"
},
"build": {
"appId": "com.carrott.desktop-pet",
"productName": "desktop-pet-inosuke",
"electronVersion": "39.8.10",
"electronDist": "node_modules/electron/dist",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"win": {
"icon": "build/icon.ico",
"signAndEditExecutable": false,
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"artifactName": "desktop-pet-inosuke-${version}-${arch}.exe"
}
},
"dependencies": {},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"electron": "^39.8.10",
"electron-builder": "^26.8.1",
"lucide-react": "^0.561.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"wait-on": "^9.0.3"
}
}