-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "watch-overlay",
"version": "1.0.0",
"description": "A transparent always-on-top watch overlay app for Windows",
"author": "You",
"main": "dist-electron/main.js",
"scripts": {
"dev": "concurrently -k \"vite\" \"wait-on http://localhost:5173 && npm run start:electron\"",
"start:electron": "cross-env NODE_ENV=development electron .",
"build": "vite build",
"build:electron": "tsc -p src-electron",
"start": "npm run dev",
"dist": "npm run build && npm run build:electron && electron-builder"
},
"build": {
"appId": "com.yourname.watchoverlay",
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"directories": {
"output": "release"
},
"win": {
"target": "portable",
"icon": "icon.ico"
}
},
"devDependencies": {
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"electron-reload": "^2.0.0-alpha.1",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"wait-on": "^9.0.1"
},
"dependencies": {
"electron": "^26.6.10",
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}