project-client/package.json

150 lines
4.6 KiB
JSON
Raw Normal View History

2023-03-29 23:02:30 +00:00
{
"name": "VencordDesktop",
2023-12-02 16:27:20 +00:00
"version": "0.4.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",
"build:dev": "pnpm build --dev",
2023-04-03 03:44:17 +00:00
"package": "pnpm build && electron-builder",
"package:dir": "pnpm build && electron-builder --dir",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.mts,.mjs",
2023-04-09 04:27:33 +00:00
"lint:fix": "pnpm lint --fix",
2023-04-03 03:44:17 +00:00
"start": "pnpm build && electron .",
"start:dev": "pnpm build:dev && electron .",
"start:watch": "pnpm build:dev && tsx scripts/startWatch.mts",
2023-04-09 23:04:41 +00:00
"test": "pnpm lint && pnpm testTypes",
"testTypes": "tsc --noEmit",
2023-12-04 21:16:43 +00:00
"watch": "pnpm build --watch",
"updateMeta": "tsx scripts/utils/updateMeta.mts"
2023-04-03 03:44:17 +00:00
},
2023-06-21 13:06:06 +00:00
"dependencies": {
"arrpc": "github:OpenAsar/arrpc#3e22fd776273afaa4a80c51deb86077ffdd4d2ae"
2023-06-21 13:06:06 +00:00
},
"optionalDependencies": {
"@vencord/venmic": "^2.1.3"
},
2023-04-03 03:44:17 +00:00
"devDependencies": {
2023-04-19 20:47:47 +00:00
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
2023-12-28 02:27:38 +00:00
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
2023-04-19 21:15:07 +00:00
"@vencord/types": "^0.1.2",
2023-07-28 19:38:17 +00:00
"dotenv": "^16.3.1",
2023-12-28 02:27:38 +00:00
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
2023-12-28 02:27:38 +00:00
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
2023-04-09 04:27:33 +00:00
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-path-alias": "^1.0.0",
2023-12-28 02:27:38 +00:00
"eslint-plugin-prettier": "^5.1.2",
2023-04-09 04:27:33 +00:00
"eslint-plugin-simple-import-sort": "^10.0.0",
2023-07-28 19:38:17 +00:00
"eslint-plugin-unused-imports": "^3.0.0",
2023-12-28 02:27:38 +00:00
"prettier": "^3.1.1",
"source-map-support": "^0.5.21",
2023-12-28 02:27:38 +00:00
"tsx": "^4.7.0",
"type-fest": "^4.9.0",
"typescript": "^5.3.3",
2023-12-04 21:05:09 +00:00
"xml-formatter": "^3.6.0"
2023-04-03 03:44:17 +00:00
},
"packageManager": "pnpm@8.11.0",
2023-04-09 04:27:33 +00:00
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
2023-04-03 03:44:17 +00:00
"build": {
"appId": "dev.vencord.desktop",
2023-07-13 17:03:13 +00:00
"productName": "Vesktop",
2023-04-05 14:57:09 +00:00
"files": [
"!*",
"dist/js",
"static",
"package.json",
"LICENSE"
],
"beforePack": "scripts/build/sandboxFix.js",
2023-04-03 03:44:17 +00:00
"linux": {
2023-09-28 00:31:31 +00:00
"icon": "build/icon.icns",
2023-04-03 03:44:17 +00:00
"category": "Network",
2023-07-13 17:03:13 +00:00
"maintainer": "vendicated+vesktop@riseup.net",
2023-04-03 03:44:17 +00:00
"target": [
2023-10-22 14:53:58 +00:00
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
},
{
"target": "tar.gz",
"arch": [
"x64",
"arm64"
]
},
{
"target": "rpm",
"arch": [
"x64",
"arm64"
]
},
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
}
2023-04-06 15:05:36 +00:00
],
"desktop": {
2023-07-13 17:03:13 +00:00
"Name": "Vesktop",
2023-04-06 15:05:36 +00:00
"GenericName": "Internet Messenger",
"Type": "Application",
"Categories": "Network;InstantMessaging;Chat;",
"Keywords": "discord;vencord;electron;chat;",
"StartupWMClass": "VencordDesktop"
2023-04-06 15:05:36 +00:00
}
2023-04-03 03:44:17 +00:00
},
2023-04-05 14:57:09 +00:00
"mac": {
2023-05-24 01:02:30 +00:00
"target": [
{
2023-06-09 20:47:59 +00:00
"target": "default",
"arch": [
"x64",
"arm64"
]
2023-05-24 01:02:30 +00:00
}
],
"category": "Network",
"extendInfo": {
"NSMicrophoneUsageDescription": "This app needs access to the microphone",
"NSCameraUsageDescription": "This app needs access to the camera",
"com.apple.security.device.audio-input": true,
"com.apple.security.device.camera": true
}
2023-04-05 14:57:09 +00:00
},
"nsis": {
"include": "build/installer.nsh",
"oneClick": false
2023-05-03 02:13:34 +00:00
},
"win": {
"target": [
"nsis",
2023-08-06 00:05:48 +00:00
"zip"
2023-05-03 02:13:34 +00:00
]
},
"publish": {
2023-08-27 20:40:37 +00:00
"provider": "github"
2023-04-06 15:05:36 +00:00
}
2023-04-03 03:44:17 +00:00
}
2023-03-29 23:02:30 +00:00
}