forked from DFreds/code-peek-atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.09 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "code-peek",
"main": "./lib/code-peek",
"version": "1.4.16",
"description": "Quickly peek and edit functions in separate files from the context of your current editor.",
"keywords": [
"peek",
"code-peek",
"peek-definition",
"quick-edit"
],
"activationCommands": {
"atom-text-editor": [
"code-peek:peekFunction",
"code-peek:toggleCodePeekOff"
]
},
"repository": "https://github.com/DFreds/code-peek-atom",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.1.0"
},
"configSchema": {
"askIfSaveOnModified": {
"type": "boolean",
"description": "When a file is modified and the code peek panel is closed without saving, open a dialogue confirming that changes will be lost.",
"default": true
},
"ignoredPaths": {
"type": "array",
"description": "Comma separated list of paths or files to ignore. Any files or directories in 'Core -> Ignored Names' will be ignored even if it is not listed here. Any files and directories ignored by the current project's VCS system will be ignored if the 'Core -> Exclude VCS Ignored Paths' is checked.",
"default": [],
"items": {
"type": "string"
}
},
"codePeekLocation": {
"type": "string",
"description": "Location of the code peek panel when it appears.",
"default": "Bottom",
"enum": [
"Bottom",
"Top",
"Left",
"Right",
"Header",
"Footer",
"Modal"
]
},
"maxHeight": {
"type": "integer",
"description": "Max height of the panel. Ranges from 200 to 800 pixels. If left or right is chosen for the location, this has no effect.",
"default": 300,
"minimum": 200,
"maximum": 800
},
"maxWidth": {
"type": "integer",
"description": "Max width of the panel. Ranges from 200 to 1000 pixels. If top, bottom, header, footer, or modal is chosen for the location, this has no effect.",
"default": 500,
"minimum": 200,
"maximum": 1000
}
}
}