an-anime-game-launcher/package.json

63 lines
1.8 KiB
JSON
Raw Normal View History

2021-09-14 12:06:09 +03:00
{
2021-11-11 22:35:48 +03:00
"name": "an-anime-game-launcher",
"version": "1.7.0",
2021-10-14 21:34:43 +03:00
"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)"
],
2021-09-14 12:06:09 +03:00
"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": {
2021-10-14 21:34:43 +03:00
"productName": "An Anime Game Linux Launcher",
"artifactName": "${productName}-${version}.${ext}",
2021-10-14 21:34:43 +03:00
"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"
]
}
]
}
2021-09-14 12:06:09 +03:00
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
2021-10-24 20:44:59 +03:00
"@types/discord-rpc": "^4.0.0",
"@types/semver": "^7.3.9",
"electron": "^16.0.2",
"electron-builder": "^22.14.5",
"sass": "^1.43.5",
"typescript": "^4.5.2"
},
"dependencies": {
"cash-dom": "^8.1.0",
"command-exists": "^1.2.9",
"discord-rpc": "^4.0.1",
2021-11-25 19:19:11 +03:00
"dbus-next": "^0.10.2",
2021-10-24 11:42:06 +03:00
"electron-store": "^8.0.1",
2021-11-03 18:22:50 +03:00
"follow-redirects": "^1.14.5",
"get-pixels": "^3.3.3",
"got": "^11.8.3",
2021-10-29 10:59:13 +03:00
"semver": "^7.3.5"
2021-09-14 12:06:09 +03:00
}
}