summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-03-27 21:33:07 +0200
committerMinteck <contact@minteck.org>2022-03-27 21:33:07 +0200
commit5ac113fbe6cf5b317775197fc163b22892146630 (patch)
treeb9b181941c27ae76593d69c5b3a3e243770a2351 /package.json
parenta805652f0061840dff8664e37d84dd7a21a5fdae (diff)
downloaddesktop-5ac113fbe6cf5b317775197fc163b22892146630.tar.gz
desktop-5ac113fbe6cf5b317775197fc163b22892146630.tar.bz2
desktop-5ac113fbe6cf5b317775197fc163b22892146630.zip
Commit
Diffstat (limited to 'package.json')
-rw-r--r--package.json90
1 files changed, 81 insertions, 9 deletions
diff --git a/package.json b/package.json
index 55f40f3..34f5d95 100644
--- a/package.json
+++ b/package.json
@@ -1,17 +1,89 @@
{
- "name": "familine-desktop",
- "version": "1.0.0",
- "description": "Un client de bureau pour Familine",
- "main": "index.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "author": "Familine",
+ "name": "Argon",
+ "product": "Argon",
+ "version": "22.0.3",
+ "description": "Native desktop Argon app",
+ "main": "main.js",
+ "author": "Minteck",
+ "artwork": "Christoffer Engström",
"license": "UNLICENSED",
"dependencies": {
"@electron/remote": "^1.0.4",
- "electron": "^13.1.2",
"jquery": "^3.6.0",
"open": "^8.4.0"
+ },
+ "colors": {
+ "primary": "#1a2733",
+ "secondary": "#5b87b3",
+ "title": "#75aee6",
+ "info": "#b3d9ff"
+ },
+ "devDependencies": {
+ "electron-builder": "^22.14.13",
+ "electron": "^13.6.9"
+ },
+ "build": {
+ "appId": "org.minteck.automatecloud.argon",
+ "copyright": "© Minteck. Some Rights Reserved.",
+ "productName": "Argon Desktop",
+ "mac": {
+ "category": "minteck.automatecloud",
+ "icon": "splashicon.icns",
+ "target": [
+ {
+ "target": "dmg",
+ "arch": [
+ "x64",
+ "arm64"
+ ]
+ }
+ ]
+ },
+ "win": {
+ "icon": "splashicon.ico",
+ "publisherName": "Minteck Automate Cloud"
+ },
+ "nsis": {
+ "allowElevation": false,
+ "installerIcon": "splashicon.ico",
+ "uninstallerIcon": "splashicon.ico"
+ },
+ "linux": {
+ "target": [
+ {
+ "target": "AppImage",
+ "arch": [
+ "x64",
+ "arm64"
+ ]
+ },
+ {
+ "target": "deb",
+ "arch": [
+ "x64",
+ "arm64"
+ ]
+ },
+ {
+ "target": "rpm",
+ "arch": [
+ "x64",
+ "arm64"
+ ]
+ },
+ {
+ "target": "tar.gz",
+ "arch": [
+ "x64",
+ "arm64"
+ ]
+ }
+ ]
+ },
+ "buildVersion": "trunk"
+ },
+ "scripts": {
+ "pack": "electron-builder --dir",
+ "dist": "electron-builder -m -l -w --x64 --arm64"
}
}