-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.32 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
90
91
92
93
94
95
96
{
"name": "banjo",
"version": "1.2.0",
"description": "listening together",
"main": "public/electron.js",
"repository": "https://github.com/banderson623/banjo",
"author": "Brian Anderson <[email protected]>",
"license": "MIT",
"private": false,
"homepage": "./",
"dependencies": {
"electron-log": "^4.1.0",
"electron-store": "^5.1.1",
"electron-window-state": "^5.0.3",
"nodemon": "^2.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "^3.4.0",
"socket.io-client": "^2.3.0",
"spotify-node-applescript": "^1.1.1",
"update-electron-app": "^1.5.0"
},
"scripts": {
"run": "node index.js",
"dev": "ENV=dev electron .",
"start": "react-scripts start",
"build": "react-scripts build",
"preelectron-pack": "npm run build",
"pack": "react-scripts build && electron-builder --dir",
"dist": "react-scripts build && electron-builder && electron-osx-sign dist/mac/banjo.app",
"sign": "electron-osx-sign dist/mac/banjo.app",
"stress": "node ./scripts/stress.js"
},
"devDependencies": {
"dotenv": "^8.2.0",
"electron": "^8.2.0",
"electron-builder": "^22.4.1",
"electron-notarize": "^0.3.0",
"prettier": "^2.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"protocols": [
{
"name": "Banjo Link",
"role": "Viewer",
"schemes": [
"banjo"
]
}
],
"build": {
"appId": "com.banderson623.Banjo",
"asar": false,
"mac": {
"target": "default",
"category": "public.app-category.utilities",
"icon": "assets/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist",
"identity": "Brian Anderson (WH7M7NUHYE)"
},
"dmg": {
"sign": false,
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"build/**/*",
"node_modules/**/*",
"lib/**/*"
]
}
}