an-anime-game-launcher/package.json

57 lines
1.6 KiB
JSON
Raw Normal View History

2021-09-14 12:06:09 +03:00
{
2021-10-14 21:34:43 +03:00
"name": "an-anime-game-linux-launcher",
"version": "1.2.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",
"start": "npm run dev && electron .",
"build": "npm run dev && electron-builder --linux"
},
"build": {
2021-10-14 21:34:43 +03:00
"productName": "An Anime Game Linux Launcher",
"artifactName": "${productName}-${os}-${arch}-${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": {
2021-10-24 20:44:59 +03:00
"@types/discord-rpc": "^4.0.0",
"@types/semver": "^7.3.9",
2021-11-03 18:22:50 +03:00
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
2021-11-03 18:22:50 +03:00
"sass": "^1.43.4",
"typescript": "^4.4.4"
},
"dependencies": {
"cash-dom": "^8.1.0",
"discord-rpc": "^4.0.1",
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",
2021-10-29 10:59:13 +03:00
"semver": "^7.3.5"
2021-09-14 12:06:09 +03:00
}
}