armcord/package.json

59 lines
1.5 KiB
JSON
Raw Normal View History

2021-05-01 12:41:12 +00:00
{
2021-07-15 13:45:56 +00:00
"name": "ArmCord",
"version": "2.5.0",
2021-05-01 12:44:40 +00:00
"description": "ArmCord is a Discord client made for ARM Linux that allows you to customize your experience.",
2021-05-01 12:41:12 +00:00
"main": "main.js",
"scripts": {
"start": "electron .",
2021-05-02 16:16:30 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
"package": "electron-builder --dir",
"make": "electron-builder",
"linux-build": "electron-builder --linux deb tar.gz rpm AppImage",
"windows-build": "electron-builder --windows nsis portable zip appx"
2021-05-01 12:41:12 +00:00
},
"author": "smartfrigde <smartfridge1337@protonmail.com>",
"license": "OSL-3.0",
2021-05-01 12:41:12 +00:00
"dependencies": {
"custom-electron-titlebar": "3.2.7",
"electron-context-menu": "^3.0.0",
2021-05-04 10:08:21 +00:00
"electron-localshortcut": "^3.2.1",
2021-06-26 19:42:14 +00:00
"electron-store": "^8.0.0",
"unzipper": "^0.10.1",
2021-05-01 12:41:12 +00:00
"v8-compile-cache": "^2.3.0"
},
"devDependencies": {
"electron": "latest",
"electron-builder": "^22.11.7"
2021-05-01 12:43:10 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartfrigde/armcord.git"
},
"keywords": [
"arm",
"discord",
"electron"
],
"build": {
"appId": "com.smartfridge.armcord",
"productName": "ArmCord",
"mac": {
2021-07-01 09:28:06 +00:00
"category": "Network"
2021-06-30 19:16:05 +00:00
},
"linux": {
2021-07-01 09:23:33 +00:00
"maintainer": "smartfridge1337@protonmail.com",
2021-06-30 19:16:05 +00:00
"target": [
"deb",
"tar.gz",
"rpm",
"AppImage"
]
}
},
2021-05-01 12:43:10 +00:00
"bugs": {
"url": "https://github.com/smartfrigde/armcord/issues",
"email": "smartfridge1337@protonmail.com"
2021-05-01 12:43:10 +00:00
},
"homepage": "https://github.com/smartfrigde/armcord#readme"
2021-05-20 16:42:16 +00:00
}