-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
81 lines (81 loc) · 2.34 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": "wagyukeygen",
"productName": "Wagyu Key Gen",
"version": "1.10.0",
"description": "GUI key generation tool wrapping the deposit cli.",
"main": "./build/electron/index.js",
"author": "Colfax Selby <colfax.selby@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.11",
"@types/tmp": "^0.2.2",
"autoprefixer": "^10.4.19",
"electron": "^28.2.2",
"electron-builder": "^24.9.1",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.88.2",
"webpack-cli": "^4.9.1"
},
"scripts": {
"build": "webpack --config webpack.react.config.js --config webpack.electron.config.js",
"build:watch": "webpack --config webpack.react.config.js --config webpack.electron.config.js --watch",
"buildcli": "src/scripts/bundle_proxy_linux.sh",
"buildcliwin": "src/scripts/bundle_proxy_win.bat",
"start": "electron ./build/electron/index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.10",
"@mui/lab": "^5.0.0-alpha.165",
"@mui/material": "^5.15.10",
"@mui/styled-engine-sc": "^6.0.0-alpha.16",
"@mui/styles": "^5.15.10",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"shebang-loader": "^0.0.1",
"style-loader": "^3.0.0",
"styled-components": "^6.1.8",
"typeface-roboto": "^1.1.13",
"web3-utils": "^1.7.0"
},
"build": {
"appId": "gg.wagyu.keygen",
"productName": "Wagyu Key Gen",
"files": [
"build/**/*",
"package.json"
],
"extraFiles": [
"build/bin/*",
"build/word_lists/*",
"static/icon.png"
],
"mac": {
"category": "public.app-category.utilities"
},
"linux": {
"target": "AppImage",
"icon": "static/icon.png"
},
"win": {
"target": "portable",
"icon": "static/icon.ico"
}
},
"packageManager": "yarn@4.1.0"
}