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{
"name": "custom-web-editor",
"private": true,
"displayName": "Custom Web Editor",
"description": "This extension enables to use custom web editors for editing local json files.",
"keywords": [],
"icon": "docs/logo.drawio.png",
"version": "0.1.0",
"license": "GPL-3.0",
"publisher": "hediet",
"author": {
"email": "henning.dieterichs@live.de",
"name": "Henning Dieterichs"
},
"readme": "./README.md",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"repository": {
"url": "https://github.com/hediet/vscode-custom-web-editor.git"
},
"main": "./out/extension",
"contributes": {
"customEditors": [
{
"viewType": "hediet.custom-web-editor",
"displayName": "Custom Web Editor",
"selector": [
{
"filenamePattern": "*.editable.json"
}
],
"priority": "default"
}
]
},
"scripts": {
"pub": "vsce publish --yarn",
"package": "vsce package --yarn",
"vscode:prepublish": "yarn run build",
"build": "tsc -p ./",
"dev": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^13.13.5",
"@types/vscode": "^1.46.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"vsce": "^1.77.0"
},
"dependencies": {
"@hediet/node-reload": "0.7.3",
"@hediet/std": "0.6.0"
}
}