training-academy/package.json

61 lines
1.3 KiB
JSON

{
"name": "edge-and-punishment",
"version": "1.0.0",
"description": "An edging challenge game where skipping tasks floods your screen with consequences - How long can you last?",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build-win": "electron-builder --win",
"build-mac": "electron-builder --mac",
"build-linux": "electron-builder --linux",
"dev": "electron . --dev"
},
"author": "Edge & Punishment Developer",
"license": "MIT",
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4"
},
"build": {
"appId": "com.edgeandpunishment.game",
"productName": "Edge & Punishment",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules/**/*",
"!src/**/*",
"!dist/**/*",
"!.git/**/*"
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
}
},
"repository": {
"type": "git",
"url": "."
},
"keywords": [
"edging",
"adult",
"game",
"challenge",
"punishment",
"consequences",
"desktop",
"electron",
"nsfw"
]
}