-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
81 lines (81 loc) · 2.05 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
{
"name": "solo-desktop",
"version": "1.0.0",
"description": "Desktop app for updating and configuring Solo",
"main": "app/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "echo \"Error: no test specified\" && exit 1",
"start-el": "electron .",
"start": "cross-env ELECTRON_IS_DEV=1 gulp default",
"release": "gulp release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conorpp/solo-desktop.git"
},
"build": {
"appId": "com.solokeys.desktop",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"requestedExecutionLevel": "requireAdministrator"
},
"mac": {
"category": "solokeys.desktop.utility.application"
},
"publish": null
},
"keywords": [
"Solo",
"FIDO2",
"security",
"U2F"
],
"author": "Conor Patrick",
"license": "MIT",
"bugs": {
"url": "https://github.com/conorpp/solo-desktop/issues"
},
"homepage": "https://github.com/conorpp/solo-desktop#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"cross-env": "^6.0.3",
"electron": "^6.0.12",
"electron-builder": "^21.2.0",
"electron-connect": "^0.6.3",
"electron-rebuild": "^1.8.6",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-livereload": "^4.0.2",
"run-sequence": "^2.2.1"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"@blueprintjs/core": "^3.19.1",
"aes-js": "^3.1.2",
"assert": "^2.0.0",
"base64url": "^3.0.1",
"bootstrap": "^4.3.1",
"cbor": "^5.0.1",
"cbor-sync": "^1.0.4",
"create-hmac": "^1.1.7",
"electron-is-dev": "^1.1.0",
"elliptic": "^6.5.1",
"node-hid": "^1.1.0",
"nrf-intel-hex": "^1.3.0",
"pkijs": "^2.1.82",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"sha.js": "^2.4.11",
"usb": "^1.6.2"
}
}