-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.01 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
{
"name": "windows-notch-overlay",
"version": "0.1.1",
"description": "Electron-based dynamic notch overlay for Windows with quick controls, telemetry, alarms, search, and media state.",
"main": "src/main/index.js",
"scripts": {
"start": "electron .",
"dev": "electron .",
"build:media-helper": "dotnet publish src/helpers/media-session/MediaSessionHelper.csproj -c Release -r win-x64 --self-contained false -o src/helpers/media-session/publish",
"build:notification-helper": "dotnet publish src/helpers/notifications/NotificationHelper.csproj -c Release -r win-x64 --self-contained false -o src/helpers/notifications/publish",
"build:helpers": "npm run build:media-helper && npm run build:notification-helper",
"build:win": "npm run build:helpers && electron-builder --win portable",
"dist": "npm run build:helpers && electron-builder --win nsis"
},
"keywords": [
"electron",
"windows",
"overlay",
"notch"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Taxperia/windows-notch-overlay.git"
},
"bugs": {
"url": "https://github.com/Taxperia/windows-notch-overlay/issues"
},
"homepage": "https://github.com/Taxperia/windows-notch-overlay#readme",
"dependencies": {
"koffi": "^2.16.1"
},
"devDependencies": {
"electron": "^42.0.0",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "com.local.windowsnotchoverlay",
"productName": "Windows Notch Overlay",
"files": [
"src/**/*",
"!src/helpers/media-session/bin/**",
"!src/helpers/media-session/obj/**",
"!src/helpers/notifications/bin/**",
"!src/helpers/notifications/obj/**",
"package.json"
],
"asarUnpack": [
"src/helpers/media-session/publish/**",
"src/helpers/notifications/publish/**"
],
"win": {
"target": [
"portable",
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}