mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
a2a997df30
* [*] ESLint: The Lintening * Missed a couple unused vals in utils * [*] Tend to DeepScan remarks * [*] sigh, remove some duplicate crap
86 lines
3 KiB
JSON
86 lines
3 KiB
JSON
{
|
|
"name": "ArmCord",
|
|
"version": "3.2.0",
|
|
"description": "ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
|
|
"main": "ts-out/main.js",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"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": "npm run build && electron ./ts-out/main.js",
|
|
"startWayland": "npm run build && electron ./ts-out/main.js --ozone-platform-hint=auto --enable-features=WebRTCPipeWireCapturer",
|
|
"package": "npm run build && electron-builder",
|
|
"packageQuick": "npm run build && electron-builder --dir",
|
|
"format": "prettier --write src *.json",
|
|
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
|
|
"CIbuild": "npm 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",
|
|
"bugs": {
|
|
"url": "https://github.com/armcord/armcord/issues"
|
|
},
|
|
"homepage": "https://github.com/armcord/armcord#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.9",
|
|
"@types/ws": "^8.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
"@typescript-eslint/parser": "^5.59.2",
|
|
"chalk-cli": "^5.0.0",
|
|
"copyfiles": "^2.4.1",
|
|
"electron": "^24.1.2",
|
|
"electron-builder": "^23.6.0",
|
|
"eslint": "^8.40.0",
|
|
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.7.1",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@pyke/vibe": "github:pykeio/vibe#3c61074414cbed96ad51870e4dde379b16d9da6d",
|
|
"arrpc": "file:src/arrpc",
|
|
"cross-fetch": "^3.1.5",
|
|
"electron-context-menu": "github:ArmCord/electron-context-menu",
|
|
"extract-zip": "^2.0.1",
|
|
"v8-compile-cache": "^2.3.0",
|
|
"ws": "^8.11.0"
|
|
},
|
|
"build": {
|
|
"nsis": {
|
|
"include": "build/installer.nsh"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
},
|
|
"packageManager": "pnpm@7.13.4"
|
|
}
|