-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.74 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
{
"name": "better-jupyter-errors",
"displayName": "better-jupyter-errors",
"description": "Better Jupyter Errors",
"version": "0.0.1",
"author": {
"name": "rebornix"
},
"publisher": "rebornix",
"engines": {
"vscode": "^1.57.0-insider"
},
"categories": [
"Other"
],
"enableProposedApi": true,
"activationEvents": [
"*"
],
"main": "./out/extension/extension.js",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"repository": {
"url": "https://github.com/notebookPowerTools/better-jupyter-errors"
},
"contributes": {
"commands": [
{
"command": "bje.revealrange",
"title": "Reveal Error Range"
},
{
"command": "bje.installModule",
"title": "Install Missing Module"
}
],
"notebookRenderer": [
{
"id": "better-jupyter-errors",
"entrypoint": "./out/client/index.js",
"displayName": "Better Jupyter Errors",
"mimeTypes": [
"application/vnd.code.notebook.error"
],
"dependencies": []
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile && node out/test/checkNoTestProvider.js",
"compile": "npm run compile:extension && npm run compile:client",
"compile:extension": "tsc -b",
"compile:client": "webpack --mode production",
"lint": "eslint src --ext ts",
"watch": "concurrently -r \"npm:watch:*\"",
"watch:extension": "tsc -b --watch",
"watch:client": "webpack --mode development --watch",
"dev": "npm run compile && concurrently -r npm:watch:extension npm:dev:client",
"dev:client": "webpack-dev-server",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"updatetypes": "cd src/extension/types && vscode-dts dev && vscode-dts master && cd ../../test/types && vscode-dts dev && vscode-dts master",
"postinstall": "npm run updatetypes"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode-notebook-renderer": "^1.57.4",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"concurrently": "^5.3.0",
"css-loader": "^4.2.0",
"eslint": "^7.19.0",
"fork-ts-checker-webpack-plugin": "^5.0.14",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"vscode-dts": "^0.3.1",
"vscode-notebook-error-overlay": "^1.0.1",
"vscode-test": "^1.5.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"ansicolor": "^1.1.93"
}
}