-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "init-window",
"version": "1.0.3",
"description": "Automate workspace setup with one click",
"main": "dist/main/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:renderer\" \"wait-on http://localhost:5173 && npm run dev:main\"",
"dev:main": "electron .",
"dev:renderer": "vite",
"build": "npm run build:renderer && npm run build:main",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"dist": "npm run build && electron-builder"
},
"build": {
"appId": "com.initwindow.app",
"productName": "Init Window",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist/**/*",
"assets/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.icns",
"category": "public.app-category.productivity"
}
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.0",
"@types/winreg": "^1.2.36",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.0",
"concurrently": "^8.2.0",
"electron": "^28.0.0",
"electron-builder": "^24.0.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"ts-node": "^10.9.0",
"typescript": "^5.9.3",
"vite": "^5.0.0",
"wait-on": "^7.2.0"
},
"dependencies": {
"electron-store": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0"
},
"optionalDependencies": {
"winreg": "^1.2.5"
}
}