-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
72 lines (72 loc) · 2.12 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
70
71
72
{
"name": "vscode-file-peek",
"displayName": "File Peek",
"description": "Allow peeking to file name strings as definitions from javascript and typescript code. Allows peek and goto definition. Great for Angular template and style files)",
"icon": "images/file_peek_icon.png",
"license": "MIT",
"keywords": [
"peek",
"definition",
"file",
"angular"
],
"version": "1.0.1",
"publisher": "abierbaum",
"bugs": {
"url": "https://github.com/abierbaum/vscode-file-peek/issues"
},
"homepage": "https://github.com/abierbaum/vscode-file-peek/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/abierbaum/vscode-file-peek.git"
},
"engines": {
"vscode": "^0.10.6"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [],
"configuration": {
"type": "object",
"title": "File Peek extension configuration",
"properties": {
"file_peek.activeLanguages": {
"type": "array",
"default": [
"typescript",
"javascript",
"python"
],
"items": {
"type": "string"
},
"description": "A list of vscode language names where the extension should be used."
},
"file_peek.searchFileExtensions": {
"type": "array",
"default": [".js", ".ts", ".html", ".css", ".scss"],
"items": {
"type": "string"
},
"description": "A list of extensions that should be tried for finding peeked files. These are tried in order as further extensions of the potential file name and also as alternative file endings instead of the existing file extension (if available)."
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.10",
"vsce": "^1.5.0",
"vscode": "^0.11.13"
}
}