-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 3.29 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
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
{
"name": "typescript-code-navigator",
"displayName": "Code navigator for typescript",
"description": "Extension provides ability to browse typescript source code by using side panel populated with list of declarations in currently opened typescript file.",
"version": "1.2.4",
"publisher": "kdcro101",
"icon": "icon/icon.png",
"galleryBanner": {
"color": "#000217",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/kdcro101/vscode-typescript-code-navigator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kdcro101/vscode-typescript-code-navigator.git"
},
"categories": [
"Other"
],
"engines": {
"vscode": "^1.26.0"
},
"activationEvents": [
"onLanguage:typescript",
"workspaceContains:**/.*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.showTypescriptMembers",
"title": "Show CODE NAVIGATOR for Typescript"
}
],
"configuration": [
{
"title": "vscode-typescript-navigator-settings",
"type": "object",
"properties": {
"typescript.navigator.collapseEnums": {
"type": "boolean",
"default": true,
"description": "Should collapse enums"
},
"typescript.navigator.collapseInterfaces": {
"type": "boolean",
"default": true,
"description": "Should collapse interfaces"
},
"typescript.navigator.collapseClasses": {
"type": "boolean",
"default": false,
"description": "Should collapse classes"
},
"typescript.navigator.showVisibilityLabels": {
"type": "boolean",
"default": true,
"description": "Show visibility label"
},
"typescript.navigator.showIcons": {
"type": "boolean",
"default": true,
"description": "Show icons"
},
"typescript.navigator.showDataTypes": {
"type": "boolean",
"default": true,
"description": "Show data type"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"tslint": "tslint -c tslint.json src/extension.ts"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/lodash": "^4.14.108",
"@types/node": "*",
"typescript": "^2.1.4",
"vscode": "^1.0.0"
},
"dependencies": {
"cryptiles": "^4.1.2",
"fs-extra": "^6.0.0",
"randomatic": "^3.1.0",
"rxjs": "^6.1.0",
"sass": "^1.3.2",
"typescript-parser": "^2.4.0",
"url-parse": "^1.4.3"
}
}