File tree 3 files changed +3
-19
lines changed
3 files changed +3
-19
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jupyter-threejs" ,
3
- "version" : " 0.2 .0" ,
3
+ "version" : " 0.3.0-alpha .0" ,
4
4
"description" : " jupyter - threejs bridge" ,
5
5
"author" : " Jupyter-Threejs development team" ,
6
6
"license" : " BSD-3-Clause" ,
15
15
},
16
16
"devDependencies" : {
17
17
"json-loader" : " ^0.5.4" ,
18
- "@jupyterlab/extension-builder" : " ^0.10.0" ,
19
18
"rimraf" : " ^2.4.1" ,
20
19
"webpack" : " ^1.12.14"
21
20
},
22
21
"dependencies" : {
23
- "@jupyterlab/nbwidgets" : " ^0.6.15" ,
24
- "jupyter-js-widgets" : " ^2.1.4" ,
22
+ "jupyter-js-widgets" : " ^3.0.0-alpha.2" ,
25
23
"ndarray" : " ^1.0.18" ,
26
24
"three" : " ^0.75.0" ,
27
25
"underscore" : " ^1.8.3"
Original file line number Diff line number Diff line change @@ -2,20 +2,6 @@ var loaders = [
2
2
{ test : / \. j s o n $ / , loader : "json-loader" } ,
3
3
] ;
4
4
5
- var buildExtension = require ( '@jupyterlab/extension-builder/lib/builder' ) . buildExtension ;
6
-
7
- buildExtension ( {
8
- name : 'jupyter-threejs' ,
9
- entry : './src/labplugin' ,
10
- outputDir : '../pythreejs/staticlab' ,
11
- useDefaultLoaders : false ,
12
- config : {
13
- module : {
14
- loaders : loaders
15
- }
16
- }
17
- } ) ;
18
-
19
5
module . exports = [
20
6
{ // Notebook extension
21
7
entry : './src/extension.js' ,
Original file line number Diff line number Diff line change 1
- var jupyter_threejs = require ( './index ' ) ;
1
+ var jupyter_threejs = require ( 'jupyter-threejs ' ) ;
2
2
3
3
var jupyterlab_widgets = require ( '@jupyterlab/nbwidgets' ) ;
4
4
You can’t perform that action at this time.
0 commit comments