-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.75 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.75 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
70
71
72
73
74
75
76
77
78
{
"name": "nudge",
"productName": "Nudge",
"version": "1.0.0",
"description": "Nudge - One-click development environment launcher",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron": "wait-on http://localhost:5173 && electron .",
"start": "concurrently \"npm run dev\" \"npm run electron\"",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac"
},
"build": {
"appId": "com.nudge.app",
"productName": "Nudge",
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"directories": {
"buildResources": "build",
"output": "release"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dir",
"arch": [
"arm64"
]
}
]
},
"dmg": {
"title": "Nudge",
"backgroundColor": "#08090D",
"iconSize": 100,
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 540,
"height": 400
}
}
},
"dependencies": {
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite": "^5.1.4",
"wait-on": "^7.2.0"
}
}