an-anime-game-launcher/package.json

50 lines
1.4 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": "2.2.0-beta4",
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"
],
"linux": {
"icon": "public/images/icon256.png",
"category": "Utility",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
}
2021-09-14 12:06:09 +03:00
},
"devDependencies": {
"electron": "^14.0.0",
"electron-builder": "^22.13.1",
"sass": "^1.41.0",
"typescript": "^4.4.3"
},
"dependencies": {
"cash-dom": "^8.1.0"
2021-09-14 12:06:09 +03:00
}
}