-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
{
"name": "keepkey-updater",
"version": "2.1.2",
"private": true,
"main": "public/electron.js",
"author": "KeepKey",
"homepage": "./",
"dependencies": {
"@shapeshiftoss/hdwallet-core": "1.20.1",
"@shapeshiftoss/hdwallet-keepkey-nodehid": "1.20.1",
"@shapeshiftoss/hdwallet-keepkey-nodewebusb": "1.20.1",
"electron-is-dev": "^2.0.0",
"electron-notarize": "^1.0.1",
"node-fetch": "^2.6.7",
"node-hid": "^2.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^5.0.1",
"semantic-ui-react": "^0.84.0",
"semver-compare": "^1.0.0",
"usb": "^2.3.1"
},
"build": {
"appId": "KeepKeyUpdater",
"productName": "KeepKey Updater",
"files": [
"build/**/*",
"build/icon.*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"icon": "build/icon.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "assets/build/entitlements.mac.plist",
"entitlementsInherit": "assets/build/entitlements.mac.plist"
},
"win": {
"icon": "build/icon.png",
"target": "portable"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start-prod": "NODE_ENV=production electron ./build/electron.js",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"electron-pack": "yarn run dist --c.extraMetadata.main=build/electron.js",
"preelectron-pack": "yarn build",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"concurrently": "^6.2.0",
"electron": "^18.1.0",
"electron-builder": "^23.0.3",
"wait-on": "^6.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}