archon-electron/package.json

49 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "archon",
"version": "0.1.0",
"description": "LDAP user and group manager",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder build --win --linux"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"LDAP",
"user",
"group"
],
"author": "Gregory Ballantine <gballantine@metaunix.net>",
"license": "BSD-2-Clause",
"devDependencies": {
"electron": "^18.2.4",
"electron-builder": "^23.0.3",
"grunt": "^1.5.3",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-twig-render": "^1.8.3"
},
"dependencies": {
"ldapjs": "^2.3.2"
},
"build": {
"appId": "net.metaunix.archon",
"copyright": "Copyright © 2022 ${author}",
"win": {
"target": "msi",
"icon": "build/icon.png"
},
"linux": {
"target": ["deb", "rpm"],
"icon": "build/icon.png"
},
"deb": {
"category": "internet"
},
"rpm": {
"packageCategory": "internet"
}
}
}