-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "LibraryManager",
"main": "html/index.html",
"description": "Library Manager",
"version": "3.1.17",
"license": "Apache-2.0",
"author": "Zachary Milot",
"keywords": [
"VENUS",
"Hamilton"
],
"bin": {
"libmgr": "./cli.js"
},
"scripts": {
"cli": "node cli.js",
"list-libs": "node cli.js list-libs",
"help": "node cli.js help",
"lint": "node --check cli.js lib/shared.js"
},
"chromium-args": "--disable-logging --enable-logging=stderr --log-level=3 --disable-crash-reporter --default-background-color=002e48",
"window": {
"title": "Library Manager",
"icon": "/LibraryManager.png",
"show": false,
"toolbar": true,
"frame": true,
"width": 1280,
"height": 800,
"min_width": 800,
"min_height": 700
},
"dependencies": {
"adm-zip": "^0.5.16",
"diskdb": "^0.1.17"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^11.12.0"
}
}