-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "postscript",
"version": "0.0.0",
"description": "Syntax highlighting and live previews of PostScript/EPS files",
"author": "John Gardner <gardnerjohng@gmail.com>",
"repository": "https://github.com/Alhadis/Atom-PostScript.git",
"main": "./lib/index.js",
"license": "ISC",
"keywords": ["PostScript", "GhostScript", "EPS", "Adobe", "live-preview"],
"engines": {
"atom": ">=1.25.0"
},
"package-deps": ["file-icons"],
"dependencies": {
"atom-live-view": "Alhadis/Atom-LiveView",
"pan-and-zoom": "v1.0.0"
},
"deserializers": {
"PostScriptPreviewView": "createPreviewView"
},
"configSchema": {
"openInSplitPane": {
"order": 1,
"type": "boolean",
"default": true,
"description": "Open previewer in a split pane. If disabled, a new tab in the same pane is created."
},
"alphaBits": {
"order": 2,
"title": "Antialiasing level",
"type": "integer",
"default": 4,
"enum": [1, 2, 4],
"description": "Subsample antialiasing level. Lower values result in choppier but faster renders."
},
"resolution": {
"order": 3,
"type": "integer",
"default": 300,
"minimum": 72,
"description": "Resolution of rendered images, expressed in DPI."
},
"command": {
"order": 4,
"title": "Command name",
"type": "string",
"default": "",
"description": "GhostScript executable used by previewer. If blank, defaults to `gs` (POSIX) or `gswin64` (Windows). **Requires restart if changed.**"
}
}
}