-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 KB
/
package.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ugui_flif",
"version": "0.3.5",
"description": "Free Lossless Image Format. View and convert FLIF files with a GUI.",
"keywords": [ "image", "compression", "lossless" ],
"author": "The Jared Wilcurt & Boyma Fahnbulleh",
"licenses": [{
"type": "GPL3",
"url": "https://github.com/FLIF-hub/UGUI_FLIF/tree/master/legal"
}],
"maintainers":[{
"name": "The Jared Wilcurt",
"email": "[email protected]",
"web": "https://github.com/FLIF-Hub/UGUI_FLIF"
}],
"repository": [{
"type": "git",
"url": "git://github.com/FLIF-Hub/UGUI_FLIF.git"
}],
"bugs": "https://github.com/FLIF-Hub/UGUI_FLIF/issues",
"scripts": {
"start": "nw ."
},
"dependencies": {},
"devDependencies": {
"nw": "^0.12.3"
},
"main": "index.htm",
"window": {
"title": "UGUI: FLIF",
"icon": "_img/black.png",
"toolbar": false,
"resizable": true,
"visible": true,
"transparent": false,
"width": 500,
"height": 480,
"min_width": 400,
"min_height": 200,
"max_width": 8000,
"max_height": 8000,
"position": "center",
"always-on-top": false,
"show_in_taskbar": true,
"fullscreen": false,
"frame": false,
"as_desktop": false
},
"nodejs": true,
"single-instance": true,
"node-main": "_scripts/node.js",
"webkit": {
"page-cache": false,
"java": false,
"plugin": true
}
}