-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.9 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.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
{
"name": "vbnet-navigator",
"displayName": "VB.NET Navigator",
"description": "Navegación básica para proyectos VB.NET en VS Code.",
"version": "1.0.6",
"publisher": "Serchland-vbnetnavigation",
"engines": {
"vscode": "^1.75.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Serchland/VBNET-Navigation.git"
},
"activationEvents": [
"onLanguage:vbnet"
],
"main": "./out/client/extension.js",
"contributes": {
"commands": [
{
"command": "vbnet-navigator.goToDefinition",
"title": "VB.NET: Ir a definición"
},
{
"command": "vbnet-navigator.validateSymbols",
"title": "VB.NET: Validar símbolos"
}
],
"keybindings": [
{
"command": "vbnet-navigator.goToDefinition",
"key": "F12",
"when": "editorTextFocus && editorLangId == vbnet"
}
],
"menus": {
"editor/context": [
{
"command": "vbnet-navigator.goToDefinition",
"group": "navigation",
"when": "editorTextFocus && editorLangId == vbnet"
},
{
"command": "vbnet-navigator.validateSymbols",
"group": "navigation",
"when": "editorTextFocus && editorLangId == vbnet"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run compile-client && npm run compile-server",
"compile-client": "tsc -p ./client",
"compile-server": "tsc -p ./server",
"watch-client": "tsc -watch -p ./client",
"watch-server": "tsc -watch -p ./server",
"postinstall": "npm run compile"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/vscode": "^1.75.0",
"typescript": "^4.9.4",
"vscode-languageclient": "^8.1.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.10"
},
"dependencies": {
"fast-glob": "^3.3.3"
}
}