generated from sindresorhus/electron-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 1.82 KB
/
package.json
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
{
"name": "presentationbridge-client",
"productName": "PresentationBridge Client",
"version": "1.1.1",
"description": "Links data from your Presentation / lyrics software to other software.",
"license": "MIT",
"repository": "josephdadams/presentationbridge-client",
"author": {
"name": "Joseph Adams",
"email": "josephdadams@gmail.com",
"url": "https://techministry.blog"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "xo",
"test": "npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --macos --linux --windows",
"windist": "electron-builder --windows",
"release": "np"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"axios": "^1.6.0",
"bootstrap": "^4.6.0",
"electron-context-menu": "^0.15.0",
"electron-debug": "^3.0.0",
"electron-store": "^8.2.0",
"electron-unhandled": "^3.0.0",
"electron-updater": "^4.0.6",
"electron-util": "^0.13.0",
"jquery": "^3.6.0",
"marked": "^4.0.10",
"mdns-js": "^1.0.3",
"popper.js": "^1.16.1",
"socket.io-client": "^2.3.1",
"webpack": "^5.76.0",
"ws": "^7.5.10"
},
"devDependencies": {
"electron": "^22.3.25",
"electron-builder": "^24.13.3",
"np": "^9.2.0",
"xo": "^0.53.1"
},
"xo": {
"envs": [
"node",
"browser"
]
},
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "com.techministry.presentationbridgeclient",
"mac": {
"category": "public.app-category.social-networking",
"darkModeSupport": true
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network;Chat"
},
"extraFiles": [
"help.md"
]
}
}