You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
potato-launcher/package.json

64 lines
2.0 KiB

{
"name": "potato-launcher",
"version": "0.1.0",
"author": "Björn Hase <me@herr-hase.wtf>",
"main": "index.js",
"description": "Launcher for Apps on Desktop",
"config": {
"forge": {
"packagerConfig": {
"out": "./build",
"dir": "./"
},
"makers": [
{
"name": "@electron-forge/maker-deb",
"platforms": [
"linux"
]
},
{
"name": "@electron-forge/maker-wix",
"platforms": [
"win32"
]
}
]
}
},
"scripts": {
"development": "export debug=true && npx mix && electron .",
"production": "npx mix --production && electron .",
"build-linux": "npx mix --production && npx electron-forge make --target=linux --arch=x64",
"build-win": "npx mix --production && npx electron-forge make --target=win32 --arch=x64"
},
"dependencies": {
"@riotjs/observable": "^4.1.1",
"@tiny-components/confirm": "^0.1.1",
"@tiny-components/notification": "^0.1.0",
"@tiny-components/plain-ui": "^0.6.0",
"@tiny-components/sidebar-form": "^0.1.0",
"@tiny-components/validator": "^0.2.0",
"dayjs": "^1.11.5",
"identicon": "^3.1.1",
"md5": "^2.3.0",
"mime-types": "^2.1.35",
"pouchdb": "^7.3.0",
"pouchdb-find": "^7.3.0",
"riot": "^7.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.66",
"@electron-forge/maker-deb": "^6.0.0-beta.66",
"@electron-forge/maker-wix": "^6.0.0-beta.66",
"@riotjs/webpack-loader": "^6.0.0",
"electron": "^19.1.0",
"electron-wix-msi": "^4.0.0",
"laravel-mix": "^6.0.49",
"sass": "^1.54.5",
"sass-loader": "^12.6.0",
"svg-spritemap-webpack-plugin": "^4.5.0"
}
}