mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
100 lines
3.6 KiB
JSON
100 lines
3.6 KiB
JSON
{
|
|
"name": "armcord",
|
|
"version": "3.3.0",
|
|
"description": "ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
|
|
"main": "ts-out/main.js",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && copyfiles -u 1 src/**/*.html src/**/**/*.css src/**/**/*.js ts-out/ && copyfiles package.json ts-out/ && copyfiles assets/**/** ts-out/",
|
|
"watch": "tsc -w",
|
|
"start": "pnpm run build && electron --trace-warnings ./ts-out/main.js",
|
|
"startThemeManager": "pnpm run build && electron ./ts-out/main.js themes",
|
|
"startKeybindManager": "pnpm run build && electron ./ts-out/main.js keybinds",
|
|
"startWayland": "pnpm run build && electron ./ts-out/main.js --ozone-platform-hint=auto --enable-features=WebRTCPipeWireCapturer,WaylandWindowDecorations --disable-gpu",
|
|
"package": "pnpm run build && electron-builder",
|
|
"packageQuick": "pnpm run build && electron-builder --dir",
|
|
"format": "prettier --write src *.json",
|
|
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\" .",
|
|
"CIbuild": "pnpm run build && electron-builder --linux zip && electron-builder --windows zip && electron-builder --macos zip",
|
|
"prepare": "git config --local core.hooksPath .hooks/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/armcord/armcord.git"
|
|
},
|
|
"author": "smartfrigde",
|
|
"license": "OSL-3.0",
|
|
"type": "module",
|
|
"bugs": {
|
|
"url": "https://github.com/armcord/armcord/issues"
|
|
},
|
|
"homepage": "https://github.com/armcord/armcord#readme",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.4.0",
|
|
"@types/eslint__js": "^8.42.3",
|
|
"@types/node": "^20.14.2",
|
|
"@types/ws": "^8.5.10",
|
|
"copyfiles": "^2.4.1",
|
|
"electron": "30.1.1",
|
|
"electron-builder": "25.0.0-alpha.9",
|
|
"eslint": "^9.4.0",
|
|
"eslint-plugin-n": "^17.8.1",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"prettier": "^3.3.1",
|
|
"typescript": "^5.4.5",
|
|
"typescript-eslint": "^7.12.0"
|
|
},
|
|
"dependencies": {
|
|
"arrpc": "github:OpenAsar/arrpc#c62ec6a04c8d870530aa6944257fe745f6c59a24",
|
|
"cross-fetch": "^4.0.0",
|
|
"electron-context-menu": "^4.0.0",
|
|
"extract-zip": "^2.0.1",
|
|
"v8-compile-cache": "^2.4.0",
|
|
"ws": "^8.17.0"
|
|
},
|
|
"build": {
|
|
"snap": {
|
|
"allowNativeWayland": true
|
|
},
|
|
"nsis": {
|
|
"include": "build/installer.nsh",
|
|
"allowToChangeInstallationDirectory": true,
|
|
"license": "LICENSE",
|
|
"oneClick": false
|
|
},
|
|
"files": [
|
|
"!*",
|
|
"assets",
|
|
"node_modules",
|
|
"ts-out",
|
|
"package.json",
|
|
"LICENSE"
|
|
],
|
|
"appId": "com.smartfridge.armcord",
|
|
"productName": "ArmCord",
|
|
"mac": {
|
|
"category": "Network"
|
|
},
|
|
"linux": {
|
|
"icon": "build/icon.icns",
|
|
"category": "Network",
|
|
"maintainer": "smartfridge@vivaldi.net",
|
|
"target": [
|
|
"deb",
|
|
"tar.gz",
|
|
"rpm",
|
|
"AppImage"
|
|
]
|
|
},
|
|
"appx": {
|
|
"identityName": "53758smartfrigde.ArmCord",
|
|
"publisher": "CN=EAB3A6D3-7145-4623-8176-D579F573F339",
|
|
"publisherDisplayName": "smartfrigde",
|
|
"applicationId": "smartfrigde.ArmCord"
|
|
}
|
|
},
|
|
"packageManager": "pnpm@9.2.0",
|
|
"package-manager-strict": false
|
|
}
|