-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
81 lines (81 loc) · 2.08 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": "deadbolt",
"version": "1.0.0",
"description": "An open source encryption app that even your mom can use.",
"license": "MIT",
"author": "Aaron Lichtman <aaronlichtman@gmail.com>",
"contributors": [
"Jonathan Shobrook <shobrookj@gmail.com> (https://github.com/shobrook)"
],
"main": "public/electron.js",
"homepage": "./",
"repository": {
"type": "git",
"url": "https://github.com/alichtman/deadbolt.git"
},
"bugs": {
"url": "https://github.com/alichtman/deadbolt/issues"
},
"build": {
"appId": "org.alichtman.deadbolt",
"productName": "Deadbolt",
"files": [
"build/**/*",
"node_modules/**/*",
"build/icon.png"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.utilities",
"target": "zip"
},
"linux": {
"target": "deb",
"category": "Utility"
},
"win": {
"target": "portable"
}
},
"dependencies": {
"electron-is-dev": "^1.1.0",
"file-icons-js": "github:websemantics/file-icons-js",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-lottie": "^1.2.3",
"react-scripts": "^3.3.1"
},
"scripts": {
"build": "export NODE_OPTIONS=--openssl-legacy-provider; react-scripts build",
"dist": "rm -rf dist/* && electron-builder -mlw",
"eject": "react-scripts eject",
"electron-pack": "build --em.main=build/electron.js",
"electron-start": "electron . --inspect=5858",
"pack": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"start": "export NODE_OPTIONS=--openssl-legacy-provider; react-scripts start",
"test": "react-scripts test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"electron": "^19.0.7",
"electron-builder": "^22.14.13"
}
}