-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 933 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "stayzen",
"version": "1.0.2",
"description": "macOS desktop app to prevent sleep",
"private": true,
"scripts": {
"install:all": "cd frontend && npm install && cd ../electron && npm install",
"dev": "concurrently -k \"npm run dev:frontend\" \"npm run dev:electron\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:electron": "cd electron && npm run build:electron && npx electron .",
"build": "npm run build:frontend && npm run build:electron",
"build:frontend": "cd frontend && npm run build",
"build:electron": "cd electron && npm run build:electron",
"build:backend": "cd backend && go build -o stayzen .",
"package": "npm run build && npm run build:backend && cd electron && npx electron-builder",
"start": "cd electron && npx electron ."
},
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
}
}