-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 4.79 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 4.79 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"scripts": {
"test": "atom --test spec"
},
"bugs": {
"url": "https://github.com/sean-codes/atom-browser/issues"
},
"description": "Atom-Browser is the plugin to browse the web, preview files, auto-reload, and search Google within Atom",
"devDependencies": {},
"engines": {
"atom": ">=1.57.0 <2.0.0"
},
"homepage": "https://github.com/sean-codes/atom-browser#readme",
"keywords": [
"browser",
"preview",
"live reload",
"web view",
"html preview"
],
"license": "MIT",
"main": "./lib/atom-browser",
"name": "atom-browser",
"optionalDependencies": {},
"readme": "Atom-Browser is the plugin to browse the web, preview files, auto-reload, and search Google within Atom",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git@github.com:sean-codes/atom-browser.git"
},
"version": "2.1.0",
"_atomModuleCache": {
"version": 1,
"dependencies": [],
"extensions": {
".js": [
"lib\\atom-browser-view.js",
"lib\\atom-browser.js"
],
".json": [
"package.json"
]
},
"folders": []
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"configSchema": {
"reloadByDefault": {
"title": "Reload by default",
"description": "Toggles auto reload to be on by default",
"type": "boolean",
"default": false
},
"reloadDelay": {
"title": "Reload on save delay",
"description": "Time in ms to wait before reloading (1000ms = 1second)",
"type": "integer",
"default": 250
},
"showZoomButtons": {
"title": "Show zoom buttons",
"description": "Toggles zoom buttons",
"type": "boolean",
"default": false
},
"showZoomFactor": {
"title": "Zoom Factor",
"description": "Changes the zoom factor to the specified factor. Zoom factor is zoom percent divided by 100, so 300% = 3.0.",
"type": "number",
"default": 1,
"minimum": 0.1,
"maximum": 5
},
"showIcon": {
"title": "Show Statusbar Icon",
"description": "Toggles the statusbar icon",
"type": "boolean",
"default": false
},
"showBackground": {
"title": "Show Background",
"description": "The default background is dark grey. Enable this for white",
"type": "boolean",
"default": false
},
"autoPrefix": {
"title": "Prefix HTTPS",
"description": "Prefix urls with HTTP or HTTPS",
"type": "string",
"default": "http",
"enum": [
{
"value": "http",
"description": "http"
},
{
"value": "https",
"description": "https"
}
]
},
"defaultLocation": {
"title": "Default Location",
"description": "Choose the default dock location for the Atom Browser: right or bottom",
"type": "string",
"default": "bottom",
"enum": [
{
"value": "right",
"description": "Right Dock"
},
{
"value": "bottom",
"description": "Bottom Dock"
}
]
},
"initialUrl": {
"title": "Initial Url",
"description": "An initial URL to start in",
"type": "string",
"default": ""
},
"z_experimental": {
"type": "object",
"title": "⚠️ Experimental Features",
"properties": {
"emitterEnabled": {
"title": "Save ScrollY on reload",
"description": "Save ScrollY on reload. Enables emitting data from webview to atom",
"type": "boolean",
"default": "false"
},
"devtools": {
"title": "Automatically open devtools",
"type": "boolean",
"default": "false"
},
"url_overwrite": {
"title": "URL Overwrites",
"description": "Paths to overwrite when right click previewing a file. Allows you to map a filepath to your localhost!",
"type": "string",
"default": "[ { \"replace\": \"example/filepath\", \"with\": \"localhost:8000\" } ]"
},
"static_server": {
"title": "Static Serve",
"description": "Preview files from a local webserver",
"type": "boolean",
"default": "false"
}
}
}
},
"dependencies": {
"express": "^4.17.1"
}
}