project-client/package.json

113 lines
3.4 KiB
JSON
Raw Normal View History

2023-03-29 23:02:30 +00:00
{
"name": "VencordDesktop",
2023-08-02 21:26:12 +00:00
"version": "0.2.8",
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-04-05 14:57:09 +00:00
"watch": "pnpm build --watch"
2023-04-03 03:44:17 +00:00
},
2023-06-21 13:06:06 +00:00
"dependencies": {
2023-08-04 18:21:49 +00:00
"arrpc": "github:OpenAsar/arrpc#b47fd7d498e248955c843a7857dd26478b82190a"
2023-06-21 13:06:06 +00:00
},
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-08-02 21:26:00 +00:00
"@types/node": "^20.4.6",
"@types/react": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
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-08-02 21:26:00 +00:00
"electron": "^25.4.0",
2023-07-28 19:38:17 +00:00
"electron-builder": "^24.6.3",
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.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-07-28 19:38:17 +00:00
"eslint-plugin-prettier": "^5.0.0",
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",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
2023-07-28 19:38:17 +00:00
"tsx": "^3.12.7",
2023-08-02 21:26:00 +00:00
"type-fest": "^4.1.0",
2023-07-28 19:38:17 +00:00
"typescript": "^5.1.6"
2023-04-03 03:44:17 +00:00
},
"packageManager": "pnpm@8.6.11",
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"
],
2023-04-03 03:44:17 +00:00
"linux": {
"category": "Network",
2023-07-13 17:03:13 +00:00
"maintainer": "vendicated+vesktop@riseup.net",
2023-04-03 03:44:17 +00:00
"target": [
"deb",
"tar.gz",
"rpm",
2023-04-09 02:23:52 +00:00
"AppImage"
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;"
}
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
}
],
2023-04-05 14:57:09 +00:00
"category": "Network"
},
"nsis": {
"include": "build/installer.nsh",
"oneClick": false
2023-05-03 02:13:34 +00:00
},
"win": {
"target": [
"nsis",
"portable"
]
},
"publish": {
"provider": "github",
"releaseType": "release"
2023-04-06 15:05:36 +00:00
}
2023-04-03 03:44:17 +00:00
}
2023-03-29 23:02:30 +00:00
}