forked from wuxi-nextcode/jupyterlab-notebookparams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "@dafeliton/jupyterlab-notebookparams",
"version": "3.3.0",
"description": "A JupyterLab extension that populates notebooks with URL parameters",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/ucsd-ets/jupyterlab-notebookparams",
"bugs": {
"url": "https://github.com/ucsd-ets/jupyterlab-notebookparams/issues"
},
"license": "MIT",
"author": "Ólafur Haukur Flygenring <[email protected]> / UCSD-ETS",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/ucsd-ets/jupyterlab-notebookparams.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@codemirror/language": "^6.0.1",
"json-schema": "^0.4.0"
},
"devDependencies": {
"rimraf": "~5.0.0",
"typescript": "~5.0.4",
"@types/json-schema": "^7.0.0"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true
}
}