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