Newer
Older
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
{
"name": "pvlink",
"version": "0.1.0",
"description": "Displays the ParaviewWeb RemoteRenderer in a Jupyter Notebook",
"author": "Alice Grosch",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com//pvlink.git"
},
"keywords": [
"jupyter",
"widgets",
"ipython",
"ipywidgets",
"jupyterlab-extension"
],
"files": [
"lib/**/*.js",
"dist/*.js"
],
"scripts": {
"clean": "rimraf dist/",
"prepublish": "webpack",
"build": "webpack",
"watch": "webpack --watch --mode=development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"webpack": "^3.5.5",
"rimraf": "^2.6.1"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1 || ^2",
"lodash": "^4.17.4",
"hammerjs": "^2.0.8",
"monologue.js": "^0.3.5",
"paraviewweb": "^3.2.12",
"wslink": "^0.1.12"
},
"jupyterlab": {
"extension": "lib/labplugin"
}
}