an-anime-game-launcher/package.json
Observer KRypt0n_ 812e0c5f18
2.2.0-beta3
- added a notification when the game has been installed
- removed windows compilation because we will never use it
- added background picture parsing using the game's API

Thanks Maroxy for all these enhancements
+ issue #1
+ pull request #2
2021-10-17 13:28:37 +02:00

47 lines
1.3 KiB
JSON

{
"name": "an-anime-game-linux-launcher",
"version": "2.2.0-beta3",
"description": "An Anime Game Linux Launcher",
"author": "Nikita Podvirnyy",
"license": "GPL-3.0",
"main": "entry.js",
"scripts": {
"dev": "tsc && sass src/sass:public/css -s compressed --no-source-map",
"start": "npm run dev && electron .",
"build": "npm run dev && electron-builder --linux"
},
"build": {
"productName": "An Anime Game Linux Launcher",
"artifactName": "${productName}-${os}-${arch}-${version}.${ext}",
"appId": "com.krypt0nn.an-anime-game-linux-launcher",
"directories": {
"output": "dist"
},
"files": [
"public/**/*",
"entry.js"
],
"linux": {
"icon": "public/images/icon512.png",
"category": "Utility",
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"devDependencies": {
"electron": "^14.0.0",
"electron-builder": "^22.13.1",
"sass": "^1.41.0",
"typescript": "^4.4.3"
},
"dependencies": {
"cash-dom": "^8.1.0"
}
}