project-client/package.json

87 lines
2.7 KiB
JSON
Raw Normal View History

2023-03-29 23:02:30 +00:00
{
"name": "VencordDesktop",
2023-04-09 02:11:22 +00:00
"version": "0.1.4",
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": {
2023-04-08 22:49:47 +00:00
"build": "tsx scripts/build/build.mts",
2023-04-03 03:44:17 +00:00
"package": "pnpm build && electron-builder",
"package:dir": "pnpm build && electron-builder --dir",
2023-04-09 04:27:33 +00:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "pnpm lint --fix",
2023-04-03 03:44:17 +00:00
"start": "pnpm build && electron .",
"start:dev": "pnpm build --dev && electron .",
2023-04-09 01:06:19 +00:00
"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",
"@types/react": "^18.0.33",
2023-04-09 04:27:33 +00:00
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
2023-04-03 03:44:17 +00:00
"electron": "^23.2.0",
"electron-builder": "^23.6.0",
"esbuild": "^0.17.14",
2023-04-09 04:27:33 +00:00
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-path-alias": "^1.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.7",
"source-map-support": "^0.5.21",
2023-04-03 03:44:17 +00:00
"tsx": "^3.12.6",
"type-fest": "^3.8.0",
2023-04-03 03:44:17 +00:00
"typescript": "^5.0.2"
},
2023-04-09 04:27:33 +00:00
"packageManager": "pnpm@8.1.1",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
2023-04-03 03:44:17 +00:00
"build": {
"appId": "dev.vencord.desktop",
2023-04-06 15:05:36 +00:00
"productName": "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",
2023-04-09 02:23:52 +00:00
"AppImage"
2023-04-06 15:05:36 +00:00
],
"desktop": {
"Name": "Vencord Desktop",
"GenericName": "Internet Messenger",
"Type": "Application",
"Categories": "Network;InstantMessaging;Chat;",
"Keywords": "discord;vencord;electron;chat;"
}
2023-04-03 03:44:17 +00:00
},
2023-04-05 14:57:09 +00:00
"mac": {
"category": "Network"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh",
"oneClick": false
2023-04-06 15:05:36 +00:00
}
2023-04-03 03:44:17 +00:00
}
2023-03-29 23:02:30 +00:00
}