-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 948 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 948 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
41
42
43
44
45
46
{
"name": "Nevermore",
"main": "index.html",
"description": "shadowsocks client powered by Nodejs",
"version": "0.2.1",
"keywords": [
"Nevermore",
"shadowsocks",
"node-webkit",
"angular.js"
],
"single-instance": true,
"dependencies": {
"qr-image": "^2.0.0",
"shadowsocks": "^1.5.2"
},
"window": {
"icon": "img/icon.png",
"fullscreen": false,
"visible": false,
"always-on-top": true,
"title": "Nevermore",
"show_in_taskbar": false,
"resizable": false,
"frame": false,
"toolbar": false,
"width": 300,
"height": 400,
"position": "center",
"min_width": 300,
"min_height": 400,
"max_width": 500,
"max_height": 400
},
"webkit": {
"page-cache": true
},
"js-flags": "--expose-gc",
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}],
"devDependencies": {
"node-webkit-builder": "^0.1.3"
}
}