-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.02 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
64
65
66
67
68
69
{
"name": "ado-codespaces-auth",
"displayName": "Azure Devops Codespaces Authentication",
"description": "Seamless authentication to Azure Devops in GitHub Codespaces",
"publisher": "ms-codespaces-tools",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/ado-codespaces-auth"
},
"version": "1.2.1",
"engines": {
"vscode": "^1.74.0"
},
"icon": "images/ado-logo.png",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ado-codespaces-auth.authenticate",
"title": "Authenticate Azure DevOps"
}
],
"configuration":{
"type": "object",
"title": "Azure DevOps Codespaces Authentication",
"properties": {
"adoCodespacesAuth.tenantID": {
"type": "string",
"default": "",
"description": "A specific tenant to sign in to. The default is to sign in to the common tenant. Valid values are common, organizations, consumers, and tenant identifiers."
}
}
}
},
"extensionKind": [
"workspace"
],
"scripts": {
"vscode:prepublish": "yarn run esbuild-base",
"esbuild-base": "esbuild ./src/extension.ts ./src/auth-helper.ts --bundle --outdir=out --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"lint": "tsc && eslint src --ext ts",
"vsce:package": "vsce package --allow-star-activation",
"vsce:publish": "vsce publish --allow-star-activation"
},
"dependencies": {
"node-ipc": "^9.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "16.x",
"@types/node-ipc": "^9.2.0",
"@types/uuid": "^9.0.0",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vscode/vsce": "^2.18.0",
"esbuild": "^0.17.5",
"eslint": "^8.33.0",
"typescript": "^4.9.4"
}
}