an-anime-game-launcher/package.json
Observer KRypt0n_ 9801cf90df
2.2.0-beta4
- added Marie Piontek as a project contributor
- added launcher icon
- made background picture caching
- made automatical patch downloading
- added social media buttons from the official launcher

Thanks Maroxy for all these enhancements
+ pull request #6
2021-10-22 15:03:17 +02:00

49 lines
1.4 KiB
JSON

{
"name": "an-anime-game-linux-launcher",
"version": "2.2.0-beta4",
"description": "An Anime Game Linux Launcher",
"author": "Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>",
"contributors": [
"Marie Piontek <marie@mxy.gg> (https://marie.omg.lol)"
],
"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/icon256.png",
"category": "Utility",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
}
},
"devDependencies": {
"electron": "^14.0.0",
"electron-builder": "^22.13.1",
"sass": "^1.41.0",
"typescript": "^4.4.3"
},
"dependencies": {
"cash-dom": "^8.1.0"
}
}