-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.05 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.05 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
{
"name": "deep-work-timer",
"version": "1.4.3",
"main": "main.js",
"author": "Deep Work",
"description": "Focus timer for deep work sessions",
"scripts": {
"start": "electron .",
"build": "electron-builder --win"
},
"build": {
"appId": "com.deepwork.timer",
"productName": "Deep Work Timer",
"files": [
"**/*",
"music/**/*"
],
"extraResources": [
{
"from": "music",
"to": "music",
"filter": [
"**/*.mp3"
]
}
],
"win": {
"target": [
"nsis"
],
"icon": "icon.ico",
"signingHashAlgorithms": [
"sha256"
],
"sign": null
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"dependencies": {
"canvas-confetti": "^1.9.4",
"https-proxy-agent": "^7.0.2",
"openai": "^4.28.0"
}
}