-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (62 loc) · 1.95 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
{
"name": "vscode-go-by-example",
"displayName": "vscode-go-by-example",
"description": "Docs from gobyexample.com in VS Code and offline",
"publisher": "stuartleeks",
"repository": {
"url": "https://github.com/stuartleeks/vscode-go-by-example"
},
"version": "1.1.5",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-go-by-example.openExample"
],
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-go-by-example.openExample",
"title": "Go By Example: Open example..."
}
]
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "yarn run compile-web",
"vscode:prepublish": "yarn run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
"package": "vsce package",
"publish": "vsce publish --yarn -p $MARKETPLACE_PUBLISH_PAT --baseContentUrl https://github.com/stuartleeks/vscode-go-by-example/raw/main/ --baseImagesUrl https://github.com/stuartleeks/vscode-go-by-example/raw/main/",
"publish-patch": "vsce publish --yarn -p $MARKETPLACE_PUBLISH_PAT patch"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^12.11.7",
"@vscode/test-web": "^0.0.13",
"@types/vscode": "^1.60.0",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"assert": "^2.0.0",
"eslint": "^7.32.0",
"glob": "^7.1.6",
"process": "^0.11.10",
"mocha": "^9.1.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"vsce": "^1.100.1",
"vscode-test": "^1.4.1",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}