forked from trixnz/vscode-go-to-method
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "go-to-clunction",
"displayName": "Go To Clunction",
"description": "Like goto symbol, but only displays a subset of symbols (classes, functions/methods, and others) declared in the active document.",
"version": "0.0.5",
"publisher": "KitKennedy",
"homepage": "https://github.com/apollokit/vscode-go-to-clunction#readme",
"repository": {
"type": "git",
"url": "https://github.com/apollokit/vscode-go-to-clunction"
},
"bugs": {
"url": "https://github.com/apollokit/vscode-go-to-clunction/issues"
},
"license": "MIT",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#2d2d2d",
"theme": "dark"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:workbench.action.gotoClunction"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "workbench.action.gotoClunction",
"title": "Go to Clunction in File..."
}
],
"configuration": {
"type": "object",
"title": "Goto Clunction Configuration",
"properties": {
"gotoClunction.showConstants": {
"type": "boolean",
"default": false,
"description": "Show constant values in the quick view menu"
},
"gotoClunction.showMarkComments": {
"type": "boolean",
"default": false,
"description": "Show MARK comments in the quick view menu"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"tslint": "^6.0.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"typescript": "^4.2.2"
}
}