-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.35 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.35 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
{
"name": "go-doc",
"displayName": "Go Doc",
"description": "Show Go symbol and package documentation in the Output panel",
"icon": "media/logo.png",
"version": "1.1.1",
"publisher": "msyrus",
"extensionDependencies": [
"golang.go"
],
"keywords": [
"go",
"golang",
"documentation",
"definition"
],
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "go",
"extensions": [
".go"
],
"aliases": [
"Go"
]
}
],
"commands": [
{
"command": "go-doc.get.def",
"title": "Go Doc: Get Definition"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"validate": "npm run compile && npm run lint",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.19.39",
"@types/vscode": "^1.21.0",
"eslint": "^10.2.0",
"glob": "^13.0.6",
"mocha": "^11.7.5",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.2",
"vscode-test": "^1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/msyrus/vscode-go-doc"
}
}