mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-11-26 06:47:07 +03:00
23d2a9a9f7
- added statistics section for now launcher stores time spent in the game - added Korean machine translation - fixed an issue with analytics dialogue - improved new launcher versions finder algorithm
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "an-anime-game-linux-launcher",
|
|
"version": "1.4.1",
|
|
"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",
|
|
"clear": "rm -r ./public/js",
|
|
"start": "npm run dev && electron .",
|
|
"build": "npm run clear && 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/discord-rpc": "^4.0.0",
|
|
"@types/semver": "^7.3.9",
|
|
"electron": "^15.3.0",
|
|
"electron-builder": "^22.13.1",
|
|
"sass": "^1.43.4",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"dependencies": {
|
|
"cash-dom": "^8.1.0",
|
|
"discord-rpc": "^4.0.1",
|
|
"electron-store": "^8.0.1",
|
|
"follow-redirects": "^1.14.5",
|
|
"get-pixels": "^3.3.3",
|
|
"semver": "^7.3.5"
|
|
}
|
|
}
|