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-06-21 12:47:25 +00:00
"version": "0.2.1",
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": {
"arrpc": "^3.1.0"
},
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-04-03 03:44:17 +00:00
"@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-19 21:15:07 +00:00
"@vencord/types": "^0.1.2",
"dotenv": "^16.0.3",
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": {
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
}