armcord/package.json

60 lines
1.7 KiB
JSON
Raw Normal View History

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-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-03-04 17:53:18 +00:00
"postinstall": "husky install"
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-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",
"@types/ws": "^8.5.3",
2021-12-24 21:56:49 +00:00
"copyfiles": "^2.4.1",
2022-07-05 16:34:53 +00:00
"electron": "^19.0.7",
"electron-builder": "^23.0.3",
"husky": "^8.0.1",
2022-06-14 14:07:33 +00:00
"prettier": "^2.7.0",
"typescript": "^4.7.3"
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",
"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": {
"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
}
}