project-client/package.json

58 lines
1.6 KiB
JSON
Raw Normal View History

2023-03-29 23:02:30 +00:00
{
"name": "VencordDesktop",
2023-04-06 01:52:22 +00:00
"version": "0.1.3",
2023-04-05 14:57:09 +00:00
"private": true,
2023-04-03 03:44:17 +00:00
"description": "",
2023-04-05 14:57:09 +00:00
"keywords": [],
"homepage": "https://vencord.dev/",
2023-04-05 14:57:09 +00:00
"license": "GPL-3.0",
"author": "Vendicated <vendicated@riseup.net>",
2023-04-03 03:44:17 +00:00
"main": "dist/js/main.js",
"scripts": {
"build": "tsx scripts/build.mts",
"package": "pnpm build && electron-builder",
"package:dir": "pnpm build && electron-builder --dir",
"start": "pnpm build && electron .",
"start:watch": "tsx scripts/startWatch.mts",
2023-04-05 14:57:09 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "pnpm build --watch"
2023-04-03 03:44:17 +00:00
},
"devDependencies": {
"@types/node": "^18.15.11",
"electron": "^23.2.0",
"electron-builder": "^23.6.0",
"esbuild": "^0.17.14",
"tsx": "^3.12.6",
"typescript": "^5.0.2"
},
"build": {
"appId": "dev.vencord.desktop",
2023-04-05 14:57:09 +00:00
"files": [
"!*",
"dist/js",
"static",
"package.json",
"LICENSE"
],
2023-04-03 03:44:17 +00:00
"linux": {
"category": "Network",
"maintainer": "vendicated+vencord-desktop@riseup.net",
"target": [
"deb",
"tar.gz",
"rpm",
"AppImage"
]
},
2023-04-05 14:57:09 +00:00
"mac": {
"category": "Network"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh",
"oneClick": false
},
"productName": "Vencord Desktop"
2023-04-03 03:44:17 +00:00
}
2023-03-29 23:02:30 +00:00
}