mirror of
https://github.com/stake-house/wagyu-installer.git
synced 2022-05-06 20:09:49 +03:00
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "wagyuinstaller",
|
|
"productName": "Wagyu Installer",
|
|
"version": "0.5",
|
|
"description": "Application aimed at lowering the technical bar to staking on Ethereum",
|
|
"main": "./build/electron/index.js",
|
|
"author": "Colfax Selby <colfax.selby@gmail.com>",
|
|
"license": "GPL",
|
|
"devDependencies": {
|
|
"@types/react": "^17.0.14",
|
|
"@types/react-dom": "^17.0.9",
|
|
"@types/react-router-dom": "^5.1.8",
|
|
"@types/tmp": "^0.2.2",
|
|
"css-loader": "^6.7.0",
|
|
"electron": "^17.1.0",
|
|
"electron-builder": "^22.14.5",
|
|
"style-loader": "^3.3.1",
|
|
"ts-loader": "^9.2.3",
|
|
"typescript": "^4.3.5",
|
|
"webpack": "^5.64.3",
|
|
"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",
|
|
"start": "electron ./build/electron/index.js",
|
|
"pack": "electron-builder --dir",
|
|
"dist": "electron-builder"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.8.1",
|
|
"@emotion/styled": "^11.8.1",
|
|
"@fontsource/roboto": "^4.5.3",
|
|
"@mui/icons-material": "^5.4.4",
|
|
"@mui/material": "^5.4.4",
|
|
"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": "^6.2.2",
|
|
"shebang-loader": "^0.0.1"
|
|
},
|
|
"build": {
|
|
"appId": "gg.wagyu.installer",
|
|
"productName": "Wagyu Installer",
|
|
"files": [
|
|
"build/**/*",
|
|
"package.json"
|
|
],
|
|
"extraFiles": [
|
|
"static/icon.png"
|
|
],
|
|
"mac": {
|
|
"category": "public.app-category.utilities"
|
|
},
|
|
"linux": {
|
|
"target": "AppImage",
|
|
"icon": "static/icon.png"
|
|
},
|
|
"win": {
|
|
"target": "portable",
|
|
"icon": "static/icon.ico"
|
|
}
|
|
}
|
|
}
|