mirror of
https://github.com/stake-house/wagyu-key-gen.git
synced 2026-01-09 12:48:05 -05:00
77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "wagyukeygen",
|
|
"version": "0.8.0",
|
|
"description": "GUI key generation tool wrapping the deposit cli.",
|
|
"main": "./build/electron/index.js",
|
|
"author": "Colfax Selby <colfax.selby@gmail.com>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.6",
|
|
"@types/js-yaml": "^4.0.2",
|
|
"@types/react": "^17.0.14",
|
|
"@types/react-dom": "^17.0.9",
|
|
"@types/react-router-dom": "^5.1.8",
|
|
"@types/styled-components": "^5.1.11",
|
|
"babel-loader": "^8.2.2",
|
|
"electron": "^13.1.6",
|
|
"electron-builder": "^22.11.7",
|
|
"ts-loader": "^9.2.3",
|
|
"typescript": "^4.3.5",
|
|
"webpack": "^5.44.0",
|
|
"webpack-cli": "^4.7.2",
|
|
"webpack-serve": "^4.0.0"
|
|
},
|
|
"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",
|
|
"dev:electron": "NODE_ENV=development webpack --config webpack.electron.config.js --mode development && electron .",
|
|
"dev:react": "NODE_ENV=development webpack-serve --config webpack.react.config.js --mode development",
|
|
"pack": "electron-builder --dir",
|
|
"dist": "electron-builder"
|
|
},
|
|
"dependencies": {
|
|
"@material-ui/core": "^4.12.1",
|
|
"@material-ui/icons": "^4.11.2",
|
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
"@rauschma/stringio": "^1.4.0",
|
|
"css-loader": "^5.2.6",
|
|
"file-loader": "^6.2.0",
|
|
"html-webpack-plugin": "^5.3.2",
|
|
"js-yaml": "^4.1.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": "^5.3.0",
|
|
"typeface-roboto": "^1.1.13"
|
|
},
|
|
"build": {
|
|
"appId": "gg.wagyu.keygen",
|
|
"productName": "WagyuKeyGen",
|
|
"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"
|
|
}
|
|
}
|
|
}
|