Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added build/Assets.car
Binary file not shown.
Binary file modified build/background.tiff
Binary file not shown.
Binary file modified build/icon.icns
Binary file not shown.
Binary file added build/icon.ico
Binary file not shown.
Binary file removed build/icon.png
Binary file not shown.
1 change: 1 addition & 0 deletions build/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 22 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,28 +35,28 @@
},
"devDependencies": {
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@stylistic/eslint-plugin": "^5.1.0",
"@types/node": "^24.0.10",
"@types/react": "18.3.1",
"@vencord/types": "^1.11.5",
"dotenv": "^16.5.0",
"electron": "^37.2.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/node": "^24.7.0",
"@types/react": "19.2.1",
"@vencord/types": "^1.13.2",
"dotenv": "^17.2.3",
"electron": "^38.0.0",
"electron-builder": "^26.0.12",
"esbuild": "^0.25.5",
"eslint": "^9.30.1",
"esbuild": "^0.25.10",
"eslint": "^9.37.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-path-alias": "^2.1.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-header": "^1.2.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-unused-imports": "^4.2.0",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"tsx": "^4.20.3",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"xml-formatter": "^3.6.6"
"tsx": "^4.20.6",
"type-fest": "^5.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
"xml-formatter": "^3.6.7"
},
"packageManager": "[email protected]",
"engines": {
Expand All @@ -66,6 +66,7 @@
"build": {
"appId": "dev.vencord.vesktop",
"productName": "Vesktop",
"executableName": "vesktop",
"files": [
"!*",
"!node_modules",
Expand All @@ -80,9 +81,10 @@
"discord"
]
},
"beforePack": "scripts/build/sandboxFix.js",
"beforePack": "scripts/build/beforePack.mjs",
"afterPack": "scripts/build/afterPack.mjs",
"linux": {
"icon": "build/icon.icns",
"icon": "build/icon.svg",
"category": "Network",
"maintainer": "[email protected]",
"target": [
Expand Down Expand Up @@ -142,7 +144,8 @@
"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
"com.apple.security.device.camera": true,
"CFBundleIconName": "Icon"
},
"notarize": true
},
Expand Down Expand Up @@ -172,6 +175,7 @@
"oneClick": false
},
"win": {
"icon": "build/icon.ico",
"target": [
{
"target": "nsis",
Expand Down
Loading