forked from microsoft/vscode-nodebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 2.56 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "xpath-notebook",
"displayName": "XPath Notebook",
"description": "XPath-JS Notebook for VS Code",
"version": "0.0.2",
"publisher": "deltaxml",
"repository": {"url": "https://github.com/pgfearo/vscode-nodebook"},
"enableProposedApi": true,
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onNotebookEditor:xbook",
"onNotebook:xbook",
"onLanguage:xbook",
"onDebugDynamicConfigurations:node"
],
"main": "./out/extension.js",
"configurationDefaults": {
"[json]": {
"editor.semanticHighlighting.enabled": true
}
},
"contributes": {
"languages": [
{
"id": "xbook",
"aliases": [
"XPath Notebook"
]
}
],
"grammars": [
{
"language": "xbook",
"scopeName": "source.xbook",
"path": "./syntaxes/JSON.tmLanguage.json"
}
],
"notebookProvider": [
{
"viewType": "xbook",
"displayName": "XPath Notebook",
"selector": [
{
"filenamePattern": "*.xbook"
}
]
}
],
"commands": [
{
"title": "Toggle Debugging",
"command": "xbook.toggleDebugging",
"icon": "$(bug)"
},
{
"title": "Restart Kernel",
"command": "xbook.restartKernel",
"icon": "$(refresh)"
}
],
"menus": {
"editor/title": [
{
"command": "xbook.toggleDebugging",
"when": "notebookEditorFocused",
"group": "navigation@1"
},
{
"command": "xbook.restartKernel",
"when": "notebookEditorFocused",
"group": "navigation@2"
}
]
},
"notebookOutputRenderer": [
{
"id": "xpath-html-renderer",
"displayName": "XPath Interactive HTML Renderer",
"entrypoint": "./out/xprenderer.js",
"mimeTypes": [
"xpath-notebook/xpath"
]
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js",
"updatetypes": "cd src/types && vscode-dts dev && vscode-dts master"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^13.11.0",
"@types/vscode-notebook-renderer": "^1.48.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-plugin-header": "^3.1.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-dts": "^0.3.1",
"vscode-test": "^1.4.0"
},
"dependencies": {
"get-port": "^5.1.1",
"rimraf": "^3.0.2",
"saxon-js": "^2.0.3",
"vscode-debugprotocol": "1.41.0"
}
}