6502SimDesktop/package.json
dependabot[bot] e938df6bf5
Bump electron from 13.6.6 to 18.3.7
---
updated-dependencies:
- dependency-name: electron
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-10 14:27:08 +00:00

21 lines
998 B
JSON

{
"name": "6502desktop",
"version": "0.3.7",
"description": "Desktop version of 6502 Simulator",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"dev": "NODE_ENV='development' electron .",
"pack-mac": "electron-packager . 6502Desktop --asar.unpack=protocol-link.html --overwrite --platform=darwin --arch=x64 --icon=assets/mac/app.icns --out=out --osx-sign.identity='Developer ID Application: 3DEsprit' --appBundleId='6502Desktop' appCategoryType=public.app-category.education",
"pack-win": "electron-packager . 6502Desktop --asar.unpack=protocol-link.html --overwrite --platform=win32 --arch=x64 --icon=assets/win/app.ico --out=out",
"pack-linux": "electron-packager . 6502Desktop --asar.unpack=protocol-link.html --overwrite --platform=linux --arch=x64 --out=out --prune=true"
},
"author": "DBrown",
"license": "ISC",
"dependencies": {
"electron": "^18.3.7"
},
"devDependencies": {}
}