-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
185 lines (185 loc) · 5.13 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"name": "keys",
"productName": "Keys",
"version": "0.2.4",
"description": "Key management, signing and encryption.",
"scripts": {
"check": "eslint --ignore-path .gitignore --ignore-pattern node_modules --quiet 'src/**/*.ts' 'src/**/*.tsx'",
"dev": "rimraf build && yarn webpack --env.NODE_ENV=development --env.target=render && yarn webpack --env.NODE_ENV=development --env.target=main",
"server": "yarn webpack-dev-server --env.NODE_ENV=development --env.target=render --hot",
"start-hot": "rimraf build && yarn webpack --env.NODE_ENV=development --env.target=main && HOT=1 yarn electron build/main.js",
"start-dev": "yarn dev && yarn electron build/main.js",
"start": "yarn start-hot",
"prod-render": "yarn webpack --env.NODE_ENV=production --env.target=render",
"prod-main": "yarn webpack --env.NODE_ENV=production --env.target=main",
"prod": "rimraf dist && yarn prod-render && yarn prod-main",
"start-prod": "yarn prod && yarn electron dist/main.js",
"dist": "yarn prod && electron-builder",
"postinstall": "electron-builder install-app-deps",
"version": "cross-var echo $npm_package_version"
},
"main": "./dist/main.js",
"browserslist": [
"last 1 Chrome version"
],
"build": {
"productName": "Keys",
"appId": "pub.Keys",
"files": [
"dist/",
"node_modules/",
"package.json"
],
"extraResources": [
"bin/keysd",
"bin/keys",
"bin/fido2.so",
"bin/updater",
"bin/keysd.exe",
"bin/keys.exe",
"bin/updater.exe"
],
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"afterSign": "./scripts/notarize.js",
"mac": {
"category": "public.app-category.productivity",
"hardenedRuntime": true,
"entitlements": "resources/entitlements.mac.plist",
"entitlementsInherit": "resources/entitlements.mac.plist",
"publish": [
"github"
],
"target": [
"dmg",
"zip"
]
},
"win": {
"publish": [
"github"
],
"target": [
"msi"
]
},
"linux": {
"publish": [
"github"
],
"target": [
"AppImage",
"deb"
],
"category": "Development"
},
"snap": {
"confinement": "classic"
},
"directories": {
"buildResources": "resources",
"output": "release"
}
},
"repository": {
"type": "git",
"url": "https://github.com/keys-pub/app.git"
},
"author": {
"name": "Gabriel Handford",
"email": "gabrielh@gmail.com",
"url": "https://github.com/gabriel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/keys-pub/app/issues"
},
"keywords": [],
"homepage": "https://github.com/keys-pub/app#README",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@jest-runner/electron": "^3.0.0",
"@types/getenv": "^1.0.0",
"@types/google-protobuf": "^3.7.3",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.149",
"@types/node": "^14.0.13",
"@types/node-emoji": "^1.8.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^17.0.0",
"@types/webpack": "^4.41.21",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"cross-var": "^1.1.0",
"css-loader": "^5.0.1",
"electron": "^11.1.1",
"electron-builder": "^22.5.1",
"electron-notarize": "^0.3.0",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"file-loader": "^6.0.0",
"google-auth-library": "^6.0.6",
"html-webpack-plugin": "^4.0.4",
"jest": "^26.4.0",
"prettier": "^2.0.2",
"react-test-renderer": "^17.0.0",
"spectron": "^11.1.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"typescript": "^4.0.2",
"url-loader": "^4.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@grpc/grpc-js": "^1.0.3",
"@grpc/proto-loader": "^0.5.5",
"@keys-pub/tsclient": "^0.1.7",
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.39",
"@material-ui/styles": "^4.3.0",
"dayjs": "^1.9.6",
"electron-store": "^6.0.0",
"electron-window-state": "^5.0.3",
"getenv": "^1.0.0",
"google-protobuf": "^3.5.0",
"lodash": "^4.17.19",
"match-sorter": "^6.0.2",
"node-emoji": "^1.10.0",
"pullstate": "^1.16.0",
"query-string": "^6.8.3",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"ts-log": "^2.2.3",
"typeface-open-sans": "^1.1.13",
"typeface-roboto-mono": "^1.1.13"
},
"engines": {
"node": ">=10.x <17",
"yarn": ">=1.x"
}
}