Electron WIP, nothing works...
This commit is contained in:
parent
c1517e259d
commit
3baa1a9fd0
4 changed files with 4983 additions and 0 deletions
|
@ -1,13 +1,35 @@
|
|||
{
|
||||
"name": "ntfy",
|
||||
"version": "1.0.0",
|
||||
"url": "https://github.com/binwiederhier/ntfy",
|
||||
"author": "Philipp C. Heckel <philipp.heckel@gmail.com>",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"start-electron": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
|
||||
"build": "react-scripts build",
|
||||
"build-electron": "react-scripts build --em.main=build/electron.js && electron-builder",
|
||||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject"
|
||||
},
|
||||
"main": "public/electron.js",
|
||||
"homepage": "./",
|
||||
"build": {
|
||||
"appId": "io.heckel.ntfy",
|
||||
"files": [
|
||||
"build/**/*",
|
||||
"node_modules/**/*",
|
||||
"public/**/*"
|
||||
],
|
||||
"directories":{
|
||||
"buildResources": "assets"
|
||||
},
|
||||
"linux": {
|
||||
"target": [
|
||||
"AppImage"
|
||||
]
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.8.2",
|
||||
"@emotion/styled": "^11.8.1",
|
||||
|
@ -15,6 +37,7 @@
|
|||
"@mui/material": "latest",
|
||||
"dexie": "^3.2.1",
|
||||
"dexie-react-hooks": "^1.1.1",
|
||||
"electron-is-dev": "^2.0.0",
|
||||
"i18next": "^21.6.14",
|
||||
"i18next-browser-languagedetector": "^6.1.4",
|
||||
"i18next-http-backend": "^1.4.0",
|
||||
|
@ -28,6 +51,12 @@
|
|||
"stacktrace-gps": "^3.0.4",
|
||||
"stacktrace-js": "^2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"concurrently": "^7.1.0",
|
||||
"electron": "^18.2.0",
|
||||
"electron-builder": "^23.0.3",
|
||||
"wait-on": "^6.0.1"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue