This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
94 lines (94 loc) · 1.95 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
{
"name": "vscode-nodebook",
"displayName": "Nodebook",
"description": "Node.js Notebook for VS Code",
"version": "1.0.0",
"enableProposedApi": true,
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onNotebookEditor:nodebook",
"onNotebook:nodebook",
"onDebugDynamicConfigurations:node"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "nodebook",
"aliases": [
"Node.js Notebook"
]
}
],
"notebookProvider": [
{
"viewType": "nodebook",
"displayName": "Node.js Notebook",
"selector": [
{
"filenamePattern": "*.nodebook"
}
]
}
],
"commands": [
{
"title": "Toggle Debugging",
"command": "nodebook.toggleDebugging",
"icon": "$(bug)"
},
{
"title": "Restart Kernel",
"command": "nodebook.restartKernel",
"icon": "$(refresh)"
}
],
"menus": {
"editor/title": [
{
"command": "nodebook.toggleDebugging",
"when": "notebookEditorFocused",
"group": "navigation@1"
},
{
"command": "nodebook.restartKernel",
"when": "notebookEditorFocused",
"group": "navigation@2"
}
]
}
},
"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",
"@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-test": "^1.4.0",
"vscode-dts": "^0.3.1"
},
"dependencies": {
"vscode-debugprotocol": "1.41.0",
"rimraf": "^3.0.2",
"get-port": "^5.1.1"
}
}