Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/github-authentication/package.json
3309 views
1
{
2
"name": "github-authentication",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"publisher": "vscode",
6
"license": "MIT",
7
"version": "0.0.2",
8
"engines": {
9
"vscode": "^1.41.0"
10
},
11
"icon": "images/icon.png",
12
"categories": [
13
"Other"
14
],
15
"api": "none",
16
"extensionKind": [
17
"ui",
18
"workspace"
19
],
20
"enabledApiProposals": [
21
"authIssuers",
22
"authProviderSpecific"
23
],
24
"activationEvents": [],
25
"capabilities": {
26
"virtualWorkspaces": true,
27
"untrustedWorkspaces": {
28
"supported": "limited",
29
"restrictedConfigurations": [
30
"github-enterprise.uri"
31
]
32
}
33
},
34
"contributes": {
35
"authentication": [
36
{
37
"label": "GitHub",
38
"id": "github",
39
"authorizationServerGlobs": [
40
"https://github.com/login/oauth"
41
]
42
},
43
{
44
"label": "GitHub Enterprise Server",
45
"id": "github-enterprise",
46
"authorizationServerGlobs": [
47
"*"
48
]
49
}
50
],
51
"configuration": [{
52
"title": "%config.github-enterprise.title%",
53
"properties": {
54
"github-enterprise.uri": {
55
"type": "string",
56
"markdownDescription": "%config.github-enterprise.uri.description%",
57
"pattern": "^(?:$|(https?)://(?!github\\.com).*)"
58
},
59
"github-authentication.useElectronFetch": {
60
"type": "boolean",
61
"default": true,
62
"scope": "application",
63
"markdownDescription": "%config.github-authentication.useElectronFetch.description%"
64
}
65
}
66
}
67
]
68
},
69
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
70
"main": "./out/extension.js",
71
"browser": "./dist/browser/extension.js",
72
"scripts": {
73
"compile": "gulp compile-extension:github-authentication",
74
"compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
75
"watch": "gulp watch-extension:github-authentication",
76
"watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose",
77
"vscode:prepublish": "npm run compile"
78
},
79
"dependencies": {
80
"node-fetch": "2.6.7",
81
"@vscode/extension-telemetry": "^0.9.8",
82
"vscode-tas-client": "^0.1.84"
83
},
84
"devDependencies": {
85
"@types/mocha": "^9.1.1",
86
"@types/node": "22.x",
87
"@types/node-fetch": "^2.5.7"
88
},
89
"repository": {
90
"type": "git",
91
"url": "https://github.com/microsoft/vscode.git"
92
}
93
}
94
95