This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "test-webview-editor",
"displayName": "test-webview-editor",
"description": "Test Webview Editors",
"version": "0.0.1",
"enableProposedApi": true,
"publisher": "bierner",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:customEditorSamples.enableTestMode",
"onCustomEditor:testWebviewEditor.abc",
"onCustomEditor:testWebviewEditor.catDraw"
],
"main": "./out/extension",
"contributes": {
"customEditors": [
{
"viewType": "testWebviewEditor.abc",
"displayName": "Test ABC editor",
"selector": [
{
"filenamePattern": "*.abc"
}
]
},
{
"viewType": "testWebviewEditor.catDraw",
"displayName": "Cat Draw",
"selector": [
{
"filenamePattern": "*.cat"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.0",
"@types/vscode": "^1.40.0",
"mocha": "^6.2.2",
"typescript": "^3.7.2",
"vscode-test": "^1.2.2"
},
"dependencies": {
"p-limit": "^2.2.2"
}
}