File tree Expand file tree Collapse file tree 4 files changed +707
-581
lines changed Expand file tree Collapse file tree 4 files changed +707
-581
lines changed Original file line number Diff line number Diff line change 31
31
"watch" : " tsc -w"
32
32
},
33
33
"dependencies" : {
34
- "@jupyterlab/application" : " ^1.0.0" ,
35
- "@jupyterlab/apputils" : " ^1.0.0" ,
36
- "@jupyterlab/coreutils" : " ^3.0.0" ,
37
- "@jupyterlab/docmanager" : " ^1.0.0" ,
38
- "@jupyterlab/filebrowser" : " ^1.0.1" ,
39
- "@jupyterlab/services" : " ^4.0.0" ,
40
- "@phosphor/messaging" : " ^1.2.3" ,
41
- "@phosphor/widgets" : " ^1.8.1"
34
+ "@jupyterlab/application" : " ^2.0.2" ,
35
+ "@jupyterlab/apputils" : " ^2.0.2" ,
36
+ "@jupyterlab/coreutils" : " ^4.0.2" ,
37
+ "@jupyterlab/settingregistry" : " ^2.0.1" ,
38
+ "@jupyterlab/docmanager" : " ^2.0.2" ,
39
+ "@jupyterlab/filebrowser" : " ^2.0.2" ,
40
+ "@jupyterlab/services" : " ^5.0.2" ,
41
+ "@lumino/messaging" : " ^1.3.3" ,
42
+ "@lumino/widgets" : " ^1.11.1"
42
43
},
43
44
"devDependencies" : {
44
45
"rimraf" : " ^2.6.1" ,
45
- "typescript" : " ~3.5 .2"
46
+ "typescript" : " ~3.7 .2"
46
47
},
47
48
"jupyterlab" : {
48
49
"extension" : true ,
Original file line number Diff line number Diff line change 1
1
import { ILabShell , JupyterFrontEnd , JupyterFrontEndPlugin } from "@jupyterlab/application" ;
2
2
import { ICommandPalette } from "@jupyterlab/apputils" ;
3
- import { ISettingRegistry , URLExt , PathExt } from "@jupyterlab/coreutils" ;
3
+ import { URLExt , PathExt } from "@jupyterlab/coreutils" ;
4
4
import { IDocumentManager } from "@jupyterlab/docmanager" ;
5
5
import { ServerConnection } from "@jupyterlab/services" ;
6
+ import { ISettingRegistry } from "@jupyterlab/settingregistry" ;
6
7
import { FileBrowser , IFileBrowserFactory } from '@jupyterlab/filebrowser' ;
7
- import { CommandRegistry } from "@phosphor /commands" ;
8
- import { ReadonlyJSONObject } from "@phosphor /coreutils" ;
9
- import { Message } from "@phosphor /messaging" ;
10
- import { ISignal , Signal } from "@phosphor /signaling" ;
11
- import { CommandPalette } from "@phosphor /widgets" ;
8
+ import { CommandRegistry } from "@lumino /commands" ;
9
+ import { ReadonlyJSONObject } from "@lumino /coreutils" ;
10
+ import { Message } from "@lumino /messaging" ;
11
+ import { ISignal , Signal } from "@lumino /signaling" ;
12
+ import { CommandPalette } from "@lumino /widgets" ;
12
13
import "../style/index.css" ;
13
14
14
15
/** Structure of the JSON response from the server */
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "allowSyntheticDefaultImports" : true ,
3
4
"declaration" : true ,
4
5
"lib" : [" es2017" , " dom" ],
5
6
"module" : " commonjs" ,
You can’t perform that action at this time.
0 commit comments