forked from jupyter-book/thebe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "thebe-lite",
"version": "0.4.5",
"description": "Thebe extension library for WASM kernels via JupyterLite",
"main": "dist/lib/thebe-lite.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"clean": "rm -rf ./dist",
"build:bundle": "webpack --config webpack.config.cjs",
"build:post:shuffle": "./bin/shufflePyolitePaths.sh",
"build:post:contents": "./bin/stubContentsApi.js",
"declarations": "tsc --project ./tsconfig.json --declaration --emitDeclarationOnly --outDir dist/types",
"build": "npm-run-all -l clean -p build:bundle declarations",
"dev": "npm run build:bundle -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/executablebooks/thebe.git"
},
"keywords": [
"executablebooks",
"thebe",
"jupyter",
"interactivity",
"jupyter-book",
"jupyterlite",
"pyodide",
"WASM"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "Executable Book Project",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/executablebooks/thebe/issues"
},
"homepage": "https://github.com/executablebooks/thebe#readme",
"dependencies": {
"@jupyterlab/coreutils": "^6.0.8",
"@jupyterlite/pyodide-kernel": "0.2.0",
"@jupyterlite/pyodide-kernel-extension": "0.2.0",
"@jupyterlite/server": "0.2.0",
"@jupyterlite/server-extension": "0.2.0",
"hook-shell-script-webpack-plugin": "^0.1.4"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"current-script-polyfill": "^1.0.0",
"ignore-emit-webpack-plugin": "^2.0.6",
"no-emit-webpack-plugin": "^4.0.1",
"npm-run-all": "^4.1.5",
"webpack": "^5.74.0"
}
}