2021-05-01 12:41:12 +00:00
|
|
|
{
|
2022-01-15 21:21:51 +00:00
|
|
|
"name": "ArmCord",
|
2022-02-26 21:27:06 +00:00
|
|
|
"version": "3.1.0",
|
2021-12-24 21:56:49 +00:00
|
|
|
"description": "ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight.",
|
2022-01-15 21:21:51 +00:00
|
|
|
"main": "ts-out/main.js",
|
2021-05-01 12:41:12 +00:00
|
|
|
"scripts": {
|
2022-05-22 14:38:09 +00:00
|
|
|
"build": "tsc && copyfiles -u 1 src/**/*.html src/**/**/*.css ts-out/ && copyfiles package.json ts-out/ && copyfiles assets/**/** ts-out/",
|
2021-12-24 21:56:49 +00:00
|
|
|
"watch": "tsc -w",
|
2022-01-15 21:32:59 +00:00
|
|
|
"start": "npm run build && electron ./ts-out/main.js",
|
2022-03-04 17:53:18 +00:00
|
|
|
"package": "npm run build && electron-builder",
|
2022-07-14 15:25:59 +00:00
|
|
|
"packageQuick": "npm run build && electron-builder --dir",
|
2022-03-05 17:04:27 +00:00
|
|
|
"format": "prettier --write src/**/*",
|
2022-04-19 18:13:46 +00:00
|
|
|
"CIbuild": "npm run build && electron-builder --linux zip && electron-builder --windows zip && electron-builder --macos zip",
|
2022-08-22 09:24:55 +00:00
|
|
|
"postinstall": "husky install",
|
|
|
|
"precommit-fix": "husky uninstall && echo - && echo !Make sure to run 'npm run format' before commiting! | chalk --stdin yellow inverse && echo -",
|
|
|
|
"precommit-fix:format": "husky uninstall && npm run format"
|
2021-05-01 12:43:10 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-12-24 21:56:49 +00:00
|
|
|
"url": "git+https://github.com/armcord/armcord.git"
|
2021-06-29 15:23:52 +00:00
|
|
|
},
|
2021-12-24 21:56:49 +00:00
|
|
|
"author": "smartfrigde",
|
|
|
|
"license": "OSL-3.0",
|
2021-05-01 12:43:10 +00:00
|
|
|
"bugs": {
|
2021-12-24 21:56:49 +00:00
|
|
|
"url": "https://github.com/armcord/armcord/issues"
|
2021-05-01 12:43:10 +00:00
|
|
|
},
|
2021-12-24 21:56:49 +00:00
|
|
|
"homepage": "https://github.com/armcord/armcord#readme",
|
|
|
|
"devDependencies": {
|
2022-06-14 14:07:33 +00:00
|
|
|
"@types/node": "^17.0.42",
|
2022-04-19 13:56:04 +00:00
|
|
|
"@types/ws": "^8.5.3",
|
2021-12-24 21:56:49 +00:00
|
|
|
"copyfiles": "^2.4.1",
|
2022-07-14 15:25:59 +00:00
|
|
|
"electron": "^19.0.8",
|
2022-04-19 20:32:43 +00:00
|
|
|
"electron-builder": "^23.0.3",
|
2022-05-13 19:23:11 +00:00
|
|
|
"husky": "^8.0.1",
|
2022-06-14 14:07:33 +00:00
|
|
|
"prettier": "^2.7.0",
|
2022-08-22 09:24:55 +00:00
|
|
|
"typescript": "^4.7.3",
|
|
|
|
"chalk-cli": "^5.0.0"
|
2022-01-15 21:21:51 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-05-21 11:00:04 +00:00
|
|
|
"electron-context-menu": "github:ArmCord/electron-context-menu",
|
2022-06-12 18:59:59 +00:00
|
|
|
"os-locale": "^6.0.2",
|
2022-04-19 13:56:04 +00:00
|
|
|
"v8-compile-cache": "^2.3.0",
|
2022-06-14 14:07:33 +00:00
|
|
|
"ws": "^8.8.0"
|
2022-01-15 21:21:51 +00:00
|
|
|
},
|
|
|
|
"build": {
|
2022-07-18 18:53:25 +00:00
|
|
|
"nsis": {
|
|
|
|
"include": "build/installer.nsh"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"!*",
|
|
|
|
"assets",
|
|
|
|
"node_modules",
|
|
|
|
"ts-out",
|
|
|
|
"package.json",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
2022-01-15 21:21:51 +00:00
|
|
|
"appId": "com.smartfridge.armcord",
|
|
|
|
"productName": "ArmCord",
|
|
|
|
"mac": {
|
|
|
|
"category": "Network"
|
|
|
|
},
|
|
|
|
"linux": {
|
2022-06-02 12:28:42 +00:00
|
|
|
"icon": "build/icon.icns",
|
2022-01-15 21:21:51 +00:00
|
|
|
"category": "Network",
|
2022-07-05 16:34:53 +00:00
|
|
|
"maintainer": "smartfridge@vivaldi.net",
|
2022-01-15 21:21:51 +00:00
|
|
|
"target": [
|
|
|
|
"deb",
|
|
|
|
"tar.gz",
|
|
|
|
"rpm",
|
|
|
|
"AppImage"
|
|
|
|
]
|
|
|
|
}
|
2021-12-24 21:56:49 +00:00
|
|
|
}
|
2022-04-18 10:05:06 +00:00
|
|
|
}
|