-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.37 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
{
"name": "goworkspace",
"displayName": "Go Workspace",
"description": "Quickly create multi-root workspace and add library folders for Golang",
"version": "0.0.1",
"publisher": "lixvbnet",
"author": {
"name": "lixvbnet",
"email": "lixvbnet@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/lixvbnet/vscode-goworkspace"
},
"license": "MIT",
"icon": "resources/icon.png",
"keywords": ["go workspace", "go", "golang", "workspace", "multi-root", "library", "folder"],
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:goworkspace.addLibFoldersToWorkspace"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "goworkspace.addLibFoldersToWorkspace",
"title": "Add Library Folders to Workspace"
}
],
"menus": {
"explorer/context": [
{
"command": "goworkspace.addLibFoldersToWorkspace",
"group": "2_workspace@1"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc",
"watch": "tsc -watch"
},
"devDependencies": {
"@types/vscode": "^1.0.0",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"glob": "^7.1.7",
"mocha": "^9.1.3",
"typescript": "^4.4.4"
}
}