-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.57 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "pro-timer",
"productName": "ProTimer",
"version": "2.1.0",
"description": "Free stage timer and speaker countdown for live events, conferences and OBS",
"main": "main.js",
"author": "Srdjan Kotarlic",
"license": "MIT",
"engines": {
"node": ">=24"
},
"repository": "https://github.com/srdjankotarlic/protimer",
"homepage": "https://srdjankotarlic.github.io/protimer/",
"bugs": {
"url": "https://github.com/srdjankotarlic/protimer/issues"
},
"keywords": [
"stage-timer",
"speaker-timer",
"conference-timer",
"presentation-timer",
"countdown-timer",
"live-events",
"live-production",
"obs",
"rundown",
"stream-deck"
],
"scripts": {
"start": "electron .",
"smoke": "electron . --smoke",
"check:public-docs": "node scripts/check-public-docs.js",
"check:indexnow": "node scripts/submit-indexnow.js --dry-run",
"check:packaging": "node scripts/check-packaging.js",
"predist:mac": "node scripts/fetch-cloudflared.js mac",
"dist:mac": "electron-builder --mac --arm64",
"predist:win": "node scripts/fetch-cloudflared.js win",
"dist:win": "electron-builder --win --x64",
"predist:all": "node scripts/fetch-cloudflared.js mac && node scripts/fetch-cloudflared.js win",
"dist:all": "electron-builder --mac --arm64 --win --x64"
},
"devDependencies": {
"electron": "^44.0.0",
"electron-builder": "^26.15.3"
},
"allowScripts": {
"electron@44.0.0": true,
"electron-winstaller@5.4.0": true
},
"overrides": {
"axios": "^1.18.1"
},
"build": {
"appId": "com.srdjankotarlic.protimer",
"productName": "ProTimer",
"afterPack": "scripts/verify-packaged-tunnel.js",
"publish": { "provider": "github", "releaseType": "release" },
"directories": {
"buildResources": "build",
"output": "dist-installers"
},
"files": [
"main.js",
"preload.js",
"controller.html",
"output.html",
"remote.html",
"backstage.html",
"node_modules/**/*"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": "arm64"
}
],
"category": "public.app-category.utilities",
"icon": "build/icon.png",
"identity": null,
"extraResources": [
{ "from": "vendor/cloudflared-darwin-arm64", "to": "cloudflared" },
{ "from": "licenses/cloudflared-LICENSE.txt", "to": "licenses/cloudflared-LICENSE.txt" },
{ "from": "licenses/THIRD_PARTY_NOTICES.md", "to": "licenses/THIRD_PARTY_NOTICES.md" }
]
},
"dmg": {
"title": "ProTimer ${version}"
},
"win": {
"target": [
{
"target": "nsis",
"arch": "x64"
},
{
"target": "portable",
"arch": "x64"
}
],
"icon": "build/icon.png",
"extraResources": [
{ "from": "vendor/cloudflared-windows-amd64.exe", "to": "cloudflared.exe" },
{ "from": "licenses/cloudflared-LICENSE.txt", "to": "licenses/cloudflared-LICENSE.txt" },
{ "from": "licenses/THIRD_PARTY_NOTICES.md", "to": "licenses/THIRD_PARTY_NOTICES.md" }
]
},
"nsis": {
"guid": "a586f9c7-78e4-598c-bbc6-2ce3633e949f",
"artifactName": "ProTimer-Setup-${version}.exe",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"shortcutName": "ProTimer"
},
"portable": {
"artifactName": "ProTimer-${version}-portable.exe"
}
},
"dependencies": {
"localtunnel": "^2.0.2",
"qrcode": "^1.5.4"
}
}