-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.15 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.15 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
{
"name": "webhooking",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --win --linux --x64",
"rebuild": "electron-rebuild"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.2",
"jquery": "^3.7.1",
"jsdom": "^26.1.0",
"node-wav-player": "1.0.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"electron": "^35.2.1",
"electron-builder": "^26.0.12",
"electron-rebuild": "^3.2.9",
"electron-winstaller": "^5.4.0",
"node-gyp": "^11.2.0"
},
"build": {
"appId": "com.webhooking.app",
"productName": "Webhook Sound Alert",
"asarUnpack": ["sounds"],
"extraFiles": [
{
"from": "sounds",
"to": "sounds"
}
],
"files": [
"**/*",
"package.json"
],
"win": {
"target": [
"nsis"
],
"icon": "icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "icon.png",
"maintainer": "",
"category": "Utility"
}
}
}