10f57bac65
* Update links in package.json I will try checking the docs too * docs: Update links in triage.md * docs: Update links in npm.md * docs: Update links in whatever files that have `cdr` * Replace globally, thanks @bpmct! * fix: coderer instead of coder I should've used all three toggles in the Search/Replace tab in the GItHub.dev editor. * Code Formatting
30 lines
576 B
JSON
30 lines
576 B
JSON
{
|
|
"name": "code-server-extension",
|
|
"description": "code-server test extension",
|
|
"version": "0.0.1",
|
|
"publisher": "coder",
|
|
"activationEvents": [
|
|
"onCommand:codeServerTest.proxyUri"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.56.0"
|
|
},
|
|
"main": "./extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "codeServerTest.proxyUri",
|
|
"title": "Get proxy URI",
|
|
"category": "code-server"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/vscode": "^1.56.0",
|
|
"typescript": "^4.0.5"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc"
|
|
}
|
|
}
|