mirror of
https://github.com/stake-house/wagyu-key-gen.git
synced 2026-01-09 12:48:05 -05:00
82 lines
2.3 KiB
JSON
82 lines
2.3 KiB
JSON
{
|
|
"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 -p never"
|
|
},
|
|
"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"
|
|
}
|