-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.57 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
{
"name": "cals-table-viewer",
"displayName": "CALS Table Viewer",
"description": "Render CALS tables found in the current file",
"version": "0.0.9",
"publisher": "deltaxml",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DeltaXML/vscode-cals-table-viewer"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Visualization"
],
"keywords": [
"cals",
"table",
"xml",
"xslt",
"xsl",
"xpath"
],
"activationEvents": [
"onCommand:cals-table-viewer.open",
"onCommand:cals-table-viewer.openSingle",
"onCommand:cals-table-viewer.openDirectory"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cals-table-viewer.open",
"title": "File (append)",
"category": "CALS Viewer"
},
{
"command": "cals-table-viewer.openSingle",
"title": "File (replace)",
"category": "CALS Viewer"
},
{
"command": "cals-table-viewer.openDirectory",
"title": "Directory",
"category": "CALS Viewer"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.75.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"saxon-js": "^2.3.0",
"typescript": "^4.5.5"
}
}