-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "vscode-visual-xml-schema-editor",
"displayName": "Visual XML Schema Editor",
"description": "Visual XML Schema Editor Extension for Visual Studio Code",
"preview": true,
"version": "0.0.1",
"publisher": "neumaennl",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/neumaennl/vscode-visual-xml-schema-editor"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages",
"Visualization"
],
"keywords": ["xml", "schema", "xsd"],
"activationEvents": [
"onCustomEditor:catCustoms.catScratch",
"onCustomEditor:catCustoms.pawDraw",
"onCustomEditor:visual.xmlSchema",
"onCommand:catCustoms.pawDraw.new"
],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "catCustoms.catScratch",
"displayName": "Cat Scratch",
"selector": [
{
"filenamePattern": "*.cscratch"
}
]
},
{
"viewType": "catCustoms.pawDraw",
"displayName": "Paw Draw",
"selector": [
{
"filenamePattern": "*.pawdraw"
}
]
},
{
"viewType": "visual.xmlSchema",
"displayName": "Visual XML Schema Editor",
"selector": [
{
"filenamePattern": "*.xsd"
}
]
}
],
"commands": [
{
"command": "catCustoms.pawDraw.new",
"title": "Create new Paw Draw Document",
"category": "Paw Draw"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"sprotty-vscode": "^0.4.0",
"sprotty-protocol": "~0.12.0",
"sprotty-vscode-protocol": "^0.4.0",
"vscode-languageclient": "^8.0.2",
"@types/node": "^16.11.7",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.8.4"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"@neumaennl/xmldom-decorators": "1.0.3",
"sprotty": "~0.12.0",
"sprotty-vscode-webview": "^0.4.0"
},
"extensionDependencies": [
"redhat.vscode-xml"
]
}