-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
153 lines (153 loc) · 4.4 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "gotoanything",
"displayName": "Go To Anything",
"description": "Visual Studio Code plugin that displays a Quick Pick input with capabilities similar to Sublime Text 3 Go To Anything functions",
"keywords": [
"Go To Anything",
"Quick Pick Anything",
"Find functions in file",
"Sublime Text 3",
"Find Symbols in file"
],
"homepage": "https://github.com/Cmacu/gotoanything",
"repository": {
"type": "git",
"url": "https://github.com/Cmacu/gotoanything"
},
"bugs": {
"url": "https://github.com/Cmacu/gotoanything/issues",
"email": "cmacu.mail@gmail.com"
},
"galleryBanner": {
"color": "#DD7104",
"theme": "dark"
},
"icon": "img/icon.png",
"version": "0.4.0",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other",
"Keymaps"
],
"publisher": "Cmacu",
"license": "SEE LICENSE IN /LICENSE",
"author": {
"name": "Stasi Vladimirov",
"email": "cmacu.mail@gmail.com",
"url": "https://github.com/Cmacu"
},
"activationEvents": [
"onCommand:extension.GoToAnything"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.GoToAnything",
"title": "Go To Anything"
}
],
"menus": {
"commandPalette": [
{
"command": "extension.GoToAnything",
"group": "Go"
}
],
"touchBar": [
{
"command": "extension.GoToAnything"
}
]
},
"keybindings": {
"command": "extension.GoToAnything",
"key": "ctrl+p",
"mac": "cmd+p"
},
"configuration": {
"title": "GoToAnything",
"properties": {
"GoToAnything.prefix.Functions": {
"type": "string",
"default": "@",
"description": "Prefix to invoke search by function name. Empty string to disable. The default is @"
},
"GoToAnything.prefix.Declarations": {
"type": "string",
"default": "$",
"description": "Prefix to invoke search for declarations. Empty string to disable. The default is $"
},
"GoToAnything.prefix.Commands": {
"type": "string",
"default": ">",
"description": "Prefix to invoke a command search (active only on first char). Empty string to disable. The default is >"
},
"GoToAnything.prefix.Symbols": {
"type": "string",
"default": "#",
"description": "Prefix to invoke search for all symbols in workspace (active only on first char). Empty string to disable. The default is #"
},
"GoToAnything.prefix.Recent": {
"type": "string",
"default": "*",
"description": "Prefix to invoke the vscode go to file search (active only on first char, no functions or declarations search). Empty string to disable. The default is *"
},
"GoToAnything.symbols.Functions": {
"type": "array",
"default": [
5,
8,
11
],
"description": "List of symbol types to include in the Functions search. For options visit: https://github.com/Cmacu/gotoanything/blob/master/src/symbolIcons.ts"
},
"GoToAnything.symbols.Declarations": {
"type": "array",
"default": [
4,
6,
7,
9,
10,
12,
13
],
"description": "List of symbol types to include in the Declarations search. For options visit: https://github.com/Cmacu/gotoanything/blob/master/src/symbolIcons.ts"
},
"GoToAnything.previewDelay": {
"type": "integer",
"default": 250,
"description": "The delay in miliseconds for displaying the selected dropdown item (only if preview is enabled)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"release": "release-it",
"test": "node ./out/test/runTest.js"
},
"release-it": {
"npm": {
"publish": false
}
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"release-it": "^12.6.2",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode-test": "^1.0.2"
}
}