-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "search-selection",
"displayName": "Search Selection",
"description": "Adds 'Search Selection' entry to the context menu",
"version": "0.0.1",
"publisher": "timbasel",
"repository": "https://github.com/timbasel/vscode-search-selection",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.searchSelection"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
"editor/context": [
{
"when": "editorHasSelection",
"command": "extension.searchSelection",
"group": "navigation"
}
]
},
"commands": [
{
"command": "extension.searchSelection",
"title": "Search Selection"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3",
"vsce": "^1.75.0"
}
}