an-anime-game-launcher/package.json
Observer KRypt0n_ 01035d7f25
1.1.0
- fixed main window flickering at start
- added environmental variables manager
- moved common styles to the basic.sass file
- added excess files deletion when game's update comes
- updated project logo
2021-11-01 10:10:51 +02:00

56 lines
1.6 KiB
JSON

{
"name": "an-anime-game-linux-launcher",
"version": "1.1.0",
"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",
"package.json"
],
"linux": {
"icon": "public/images/icons",
"category": "Game",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
}
},
"devDependencies": {
"@types/semver": "^7.3.9",
"@types/discord-rpc": "^4.0.0",
"electron": "^14.0.0",
"electron-builder": "^22.13.1",
"sass": "^1.41.0",
"typescript": "^4.4.3"
},
"dependencies": {
"cash-dom": "^8.1.0",
"discord-rpc": "^4.0.1",
"electron-store": "^8.0.1",
"follow-redirects": "^1.14.4",
"semver": "^7.3.5"
}
}