This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
forked from malkomalko/searchy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "sublime-search-vscode",
"displayName": "Sublime Search",
"description": "Sublime-like search for vs code. Uses ripgrep and opens results in new document.",
"version": "0.0.1",
"publisher": "garreh",
"repository": "garreh/sublime-search-vscode",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:searchy.search",
"onCommand:searchy.searchInPath"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "searchy.search",
"title": "Searchy - Search"
},
{
"command": "searchy.searchInPath",
"title": "Searchy",
"when": "explorerResourceIsFolder"
}
],
"languages": [{
"id": "searchy",
"aliases": [
"Searchy"
],
"extensions": [
".searchy"
]
}],
"grammars": [{
"language": "searchy",
"path": "./searchy-syntax.json",
"scopeName": "source.searchy"
}],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "searchy.searchInPath",
"group": "searchy"
}
]
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"eslint": "^4.6.1",
"@types/node": "^7.0.0",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"vscode-ripgrep": "0.0.26"
}
}