Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « github-authentication « extensions - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a130c1999280f3d514027ae851dd9ecfe560540d (plain)
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
70
71
72
73
74
75
76
77
{
  "name": "github-authentication",
  "displayName": "%displayName%",
  "description": "%description%",
  "publisher": "vscode",
  "license": "MIT",
  "version": "0.0.2",
  "engines": {
    "vscode": "^1.41.0"
  },
  "icon": "images/icon.png",
  "categories": [
    "Other"
  ],
  "api": "none",
  "extensionKind": [
    "ui",
    "workspace"
  ],
  "activationEvents": [
    "onAuthenticationRequest:github",
    "onAuthenticationRequest:github-enterprise"
  ],
  "capabilities": {
    "virtualWorkspaces": true,
    "untrustedWorkspaces": {
      "supported": true
    }
  },
  "contributes": {
    "authentication": [
      {
        "label": "GitHub",
        "id": "github"
      },
      {
        "label": "GitHub Enterprise",
        "id": "github-enterprise"
      }
    ],
    "configuration": {
      "title": "GitHub Enterprise Authentication Provider",
      "properties": {
        "github-enterprise.uri": {
          "type": "string",
          "description": "URI of your GitHub Enterprise Instance"
        }
      }
    }
  },
  "aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
  "main": "./out/extension.js",
  "browser": "./dist/browser/extension.js",
  "scripts": {
    "compile": "gulp compile-extension:github-authentication",
    "compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
    "watch": "gulp watch-extension:github-authentication",
    "watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose",
    "vscode:prepublish": "npm run compile"
  },
  "dependencies": {
    "node-fetch": "2.6.7",
    "uuid": "8.1.0",
    "@vscode/extension-telemetry": "0.6.2",
    "vscode-nls": "^5.0.0",
    "vscode-tas-client": "^0.1.47"
  },
  "devDependencies": {
    "@types/node": "16.x",
    "@types/node-fetch": "^2.5.7",
    "@types/uuid": "8.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/microsoft/vscode.git"
  }
}