-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 905 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 905 Bytes
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
{
"name": "vscode-xml-preview",
"displayName": "VSCode XML Preview Extension",
"description": "Provides a formatted preview for XML documents based on XSL stylesheets.",
"version": "1.0.0",
"publisher": "Max Rakhimov",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:xml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "xmlPreview.start",
"title": "Open XML Preview"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@types/vscode": "^1.95.0",
"@vscode/test-electron": "^2.4.1",
"typescript": "^4.9.5"
},
"dependencies": {
"node-fetch": "^2.7.0"
}
}