723469ab5b
* chore(deps): replace argon2 w/@node-rs/argon2 * refactor: clean up hashPassword functions * refactor(util): pass in process.platform * fix: use correct settings for test-extension Before, it was running into errors with an @types package. Now, we're correctly running `tsc` so it picks up our `tsconfig.json` and we're telling TypeScript to not typecheck our lib and exclude `node_modules`
30 lines
574 B
JSON
30 lines
574 B
JSON
{
|
|
"name": "code-server-extension",
|
|
"description": "code-server test extension",
|
|
"version": "0.0.1",
|
|
"publisher": "cdr",
|
|
"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"
|
|
}
|
|
}
|