-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.41 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
{
"name": "onecopy-electron",
"version": "1.0.3",
"description": "Save all information and paste them whenever you need them",
"main": "public/electron.js",
"scripts": {
"dev": "concurrently \"npm run start-react\" \"wait-on http://localhost:3000 && electron .\"",
"start-react": "react-scripts start",
"build-react": "react-scripts build",
"start": "electron .",
"dist": "electron-builder --win --x64",
"package": "electron-builder",
"package:win": "electron-builder -w",
"package:linux": "electron-builder -l",
"package:mac": "electron-builder -m",
"package:all": "electron-builder -lwm",
"deploy:win": "electron-builder -w --publish always",
"deploy:linux": "electron-builder -l --publish always",
"deploy:mac": "electron-builder -m --publish always",
"postinstall": "electron-builder install-app-deps"
},
"repository": "https://github.com/HiroshiFuu/onecopy-electron",
"keywords": [
"Electron",
"Copy to clipboard",
"Password manager"
],
"homepage": "./",
"author": "FENG Hao <hiroshifuu@outlook.com>",
"license": "MIT",
"build": {
"appId": "com.hiroshifuu.onecopy-electron",
"productName": "onecopy-electron",
"copyright": "Copyright © 2021 @ FENG Hao",
"mac": {
"category": "public.app.category.utilities",
"icon": "assets/app-icon/mac/icon.icns"
},
"win": {
"icon": "assets/app-icon/win/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "assets/app-icon/png/128x128.png"
},
"files": [
"node_modules/**/*",
"package.json",
"assets/",
"public/index.html",
"public/electron.js",
"public/preload.js"
],
"directories": {
"buildResources": "assets"
}
},
"devDependencies": {
"electron": "^12.0.7",
"electron-builder": "^22.9.1"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"electron-is-dev": "^1.2.0",
"node-sass": "^4.13.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.4.0",
"style-loader": "^2.0.0",
"wait-on": "^5.2.1"
},
"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"
]
}
}