2021-05-01 12:41:12 +00:00
|
|
|
{
|
2022-01-15 21:21:51 +00:00
|
|
|
"name": "ArmCord",
|
2022-01-15 21:33:28 +00:00
|
|
|
"version": "3.0.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-01-15 21:32:59 +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",
|
|
|
|
"package": "npm run build && electron-builder"
|
|
|
|
|
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-01-15 21:21:51 +00:00
|
|
|
"electron": "^16.0.7",
|
2021-12-24 21:56:49 +00:00
|
|
|
"@types/electron-json-storage": "^4.5.0",
|
|
|
|
"@types/node": "^14.18.2",
|
2022-01-15 21:21:51 +00:00
|
|
|
"typescript": "^4.5.4",
|
2021-12-24 21:56:49 +00:00
|
|
|
"copyfiles": "^2.4.1",
|
2022-01-15 21:21:51 +00:00
|
|
|
"electron-builder": "^22.14.5"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-12-24 21:56:49 +00:00
|
|
|
"electron-json-storage": "^4.5.0",
|
2022-01-15 21:21:51 +00:00
|
|
|
"v8-compile-cache": "^2.3.0"
|
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"appId": "com.smartfridge.armcord",
|
|
|
|
"productName": "ArmCord",
|
|
|
|
"mac": {
|
|
|
|
"category": "Network"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"category": "Network",
|
|
|
|
"maintainer": "smartfrigde@gmail.com",
|
|
|
|
"target": [
|
|
|
|
"deb",
|
|
|
|
"tar.gz",
|
|
|
|
"rpm",
|
|
|
|
"AppImage"
|
|
|
|
]
|
|
|
|
}
|
2021-12-24 21:56:49 +00:00
|
|
|
}
|
2021-05-20 16:42:16 +00:00
|
|
|
}
|