-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.03 KB
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
{
"name": "@jupyterlite/javascript-kernel-extension",
"version": "0.4.0-alpha.0",
"description": "JupyterLite - JavaScript Kernel Extension",
"homepage": "https://github.com/jupyterlite/javascript-kernel",
"bugs": {
"url": "https://github.com/jupyterlite/javascript-kernel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlite/javascript-kernel.git"
},
"license": "BSD-3-Clause",
"author": "JupyterLite Contributors",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js"
],
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc -b",
"build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",
"clean": "jlpm clean:lib",
"clean:all": "jlpm clean:lib && jlpm run clean:dist && jlpm clean:labextension",
"clean:dist": "rimraf dist",
"clean:labextension": "rimraf ../../jupyterlite_javascript_kernel/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"install:extension": "jlpm build",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^4.5.0",
"@jupyterlite/javascript-kernel": "^0.4.0-alpha.0",
"@jupyterlite/services": "^0.7.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.5.0",
"npm-run-all2": "^7.0.1",
"rimraf": "~5.0.1",
"typescript": "~5.0.2"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "../../jupyterlite_javascript_kernel/labextension",
"sharedPackages": {
"@jupyterlite/services": {
"bundled": false,
"singleton": true
}
}
},
"jupyterlite": {
"liteExtension": true
}
}