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

package.json « vscode-custom-editor-tests « extensions - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 997c3a94da6ee677daea91a8f9b88787eb3fdd3f (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
{
  "name": "vscode-custom-editor-tests",
  "description": "Custom editor tests for VS Code",
  "version": "0.0.1",
  "publisher": "vscode",
  "license": "MIT",
  "private": true,
  "activationEvents": [
    "onCustomEditor:testWebviewEditor.abc"
  ],
  "main": "./out/extension",
  "enableProposedApi": true,
  "engines": {
    "vscode": "^1.48.0"
  },
  "icon": "media/icon.png",
  "scripts": {
    "compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
    "vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:vscode-notebook-tests ./tsconfig.json"
  },
  "dependencies": {
    "p-limit": "^3.0.2"
  },
  "devDependencies": {
    "@types/node": "14.x",
    "@types/p-limit": "^2.2.0"
  },
  "contributes": {
    "customEditors": [
      {
        "viewType": "testWebviewEditor.abc",
        "displayName": "Test ABC editor",
        "selector": [
          {
            "filenamePattern": "*.abc"
          }
        ]
      }
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/microsoft/vscode.git"
  }
}