-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (147 loc) · 3.9 KB
/
package.json
File metadata and controls
148 lines (147 loc) · 3.9 KB
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
{
"name": "debuggersearch",
"displayName": "DebuggerSearch",
"description": "Search the paused debugger for a value",
"publisher": "BryceSmith",
"author": {
"name": "Bryce Smith",
"url": "https://github.com/bryce-s/"
},
"version": "0.8.0",
"icon": "resources/debuggerSearch.png",
"homepage": "https://github.com/bryce-s/DebuggerSearch",
"badges": [],
"repository": {
"type": "git",
"url": "https://github.com/bryce-s/DebuggerSearch.git"
},
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:variableSearch.search",
"onCommand:variableSearch.setThread",
"onCommand:variableSearch.setFrame",
"onCommand:variableSearch.searchForTerm",
"onCommand:variableSearch.setSearchDepth",
"onCommand:variableSearch.resetParameters",
"onCommand:variableSearch.setScope",
"onDebugAdapterProtocolTracker"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "variableSearch.search",
"category": "VariableSearch",
"title": "Search Variables"
},
{
"command": "variableSearch.setThread",
"category": "VariableSearch",
"title": "Set Target Thread"
},
{
"command": "variableSearch.setFrame",
"category": "VariableSearch",
"title": "Set Target Stack Frame"
},
{
"command": "variableSearch.searchForTerm",
"category": "VariableSearch",
"title": "Search for Term"
},
{
"command": "variableSearch.setSearchDepth",
"category": "VariableSearch",
"title": "Set Search Depth"
},
{
"command": "variableSearch.resetParameters",
"category": "VariableSearch",
"title": "Reset Search Parameters"
},
{
"command": "variableSearch.setScope",
"category": "VariableSearch",
"title": "Set Scope for Search"
},
{
"command": "variableSearch.setSearchType",
"category": "VariableSearch",
"title": "Set Search Type"
},
{
"command": "variableSearch.searchForTermFromTree",
"title": "Search for Term",
"icon": {
"light": "resources/light/search.svg",
"dark": "resources/dark/search.svg"
}
},
{
"command": "variableSearch.cancelSearch",
"title": "Cancel Search",
"icon": {
"light": "resources/light/search-stop.svg",
"dark": "resources/dark/search-stop.svg"
}
},
{
"command": "variableSearch.refreshSearchTree",
"title": "Refresh",
"enablement": "false",
"icon": {
"light": "resources/light/refresh.svg",
"dark": "resources/dark/refresh.svg"
}
}
],
"views": {
"debug": [
{
"id": "variablesSearch.view",
"name": "Advanced Variables Search"
}
]
},
"menus": {
"view/title": [
{
"command": "variableSearch.searchForTermFromTree",
"when": "view == variablesSearch.view",
"group": "navigation"
},
{
"command": "variableSearch.cancelSearch",
"when": "view == variablesSearch.view",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.53.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"eslint": "^7.19.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
}
}