-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
73 lines (73 loc) · 2.04 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
{
"name": "vscode-pyodide",
"displayName": "vscode-pyodide",
"repository": {
"url": "https://github.com/joyceerhl/vscode-pyolite"
},
"description": "Run Python code in Jupyter notebooks",
"publisher": "joyceerhl",
"author": "joyceerhl",
"preview": true,
"version": "0.0.11",
"engines": {
"vscode": "^1.57.0-insider"
},
"categories": [
"Notebooks",
"Data Science",
"Machine Learning",
"Education"
],
"tags": [
"jupyter",
"python",
"notebook",
"kernel",
"ipynb"
],
"activationEvents": [
"onNotebook:jupyter-notebook"
],
"browser": "./dist/web/extension.js",
"scripts": {
"test": "node ./dist/web/test/runTest.js",
"pretest": "npm run compile-web && tsc ./src/web/test/runTest.ts --outDir ./dist --rootDir ./src --target es6 --module commonjs",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack --config ./build/web-extension.webpack.config.js",
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
"lint": "eslint src --ext ts",
"serve": "npx serve --cors -l 5000",
"tunnel": "npx localtunnel -p 5000",
"updatetypes": "cd src/web/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/trusted-types": "^1.0.6",
"@types/uuid": "^3.4.3",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"assert": "^2.0.0",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"process": "^0.11.10",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"vscode-dts": "^0.3.1",
"vscode-test": "^1.5.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/coreutils": "^3.1.0",
"@lumino/coreutils": "^1.10.0",
"crypto": "1.0.1",
"uuid": "^3.3.2"
}
}