1515 "author" : " Amit Rathi" ,
1616 "files" : [
1717 " lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}" ,
18- " style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
18+ " style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" ,
19+ " style/index.js"
1920 ],
2021 "main" : " lib/index.js" ,
2122 "types" : " lib/index.d.ts" ,
2526 "url" : " https://github.com/ReviewNB/jupyterlab-gitplus.git"
2627 },
2728 "scripts" : {
28- "build" : " tsc" ,
29- "clean" : " rimraf lib tsconfig.tsbuildinfo" ,
29+ "build" : " jlpm run build:lib && jlpm run build:labextension:dev" ,
30+ "build:labextension" : " jupyter labextension build ." ,
31+ "build:labextension:dev" : " jupyter labextension build --development True ." ,
32+ "build:lib" : " tsc" ,
33+ "build:prod" : " jlpm run clean && jlpm run build:lib && jlpm run build:labextension" ,
34+ "clean" : " jlpm run clean:lib" ,
35+ "clean:all" : " jlpm run clean:lib && jlpm run clean:labextension" ,
36+ "clean:labextension" : " rimraf jupyterlab_gitplus/labextension" ,
37+ "clean:lib" : " rimraf lib tsconfig.tsbuildinfo" ,
38+ "eslint" : " eslint . --ext .ts,.tsx --fix" ,
39+ "eslint:check" : " eslint . --ext .ts,.tsx" ,
40+ "install:extension" : " jlpm run build" ,
3041 "prepare" : " jlpm run clean && jlpm run build" ,
31- "watch" : " tsc -w"
42+ "watch" : " run-p watch:src watch:labextension" ,
43+ "watch:labextension" : " jupyter labextension watch ." ,
44+ "watch:src" : " tsc -w"
3245 },
3346 "dependencies" : {
34- "@jupyterlab/application" : " ^2 .0.0 " ,
35- "@jupyterlab/apputils" : " ^2 .0.0 " ,
36- "@jupyterlab/docregistry" : " ^2 .0.0 " ,
37- "@jupyterlab/fileeditor" : " ^2 .0.0 " ,
38- "@jupyterlab/mainmenu" : " ^2 .0.0 " ,
39- "@jupyterlab/notebook" : " ^2 .0.0 " ,
40- "@lumino/disposable" : " ^1.3.5 " ,
47+ "@jupyterlab/application" : " ^3 .0.11 " ,
48+ "@jupyterlab/apputils" : " ^3 .0.9 " ,
49+ "@jupyterlab/docregistry" : " ^3 .0.11 " ,
50+ "@jupyterlab/fileeditor" : " ^3 .0.11 " ,
51+ "@jupyterlab/mainmenu" : " ^3 .0.9 " ,
52+ "@jupyterlab/notebook" : " ^3 .0.11 " ,
53+ "@lumino/disposable" : " ^1.4.3 " ,
4154 "axios" : " ^0.19.2"
4255 },
4356 "devDependencies" : {
44- "rimraf" : " ^2.6.1" ,
45- "typescript" : " ~3.7.0"
57+ "@jupyterlab/builder" : " ^3.0.0" ,
58+ "@typescript-eslint/eslint-plugin" : " ^4.8.1" ,
59+ "@typescript-eslint/parser" : " ^4.8.1" ,
60+ "eslint" : " ^7.14.0" ,
61+ "eslint-config-prettier" : " ^6.15.0" ,
62+ "eslint-plugin-prettier" : " ^3.1.4" ,
63+ "mkdirp" : " ^1.0.3" ,
64+ "npm-run-all" : " ^4.1.5" ,
65+ "prettier" : " ^2.1.1" ,
66+ "rimraf" : " ^3.0.2" ,
67+ "typescript" : " ~4.1.3"
4668 },
4769 "sideEffects" : [
48- " style/*.css"
70+ " style/*.css" ,
71+ " style/index.js"
4972 ],
5073 "jupyterlab" : {
51- "extension" : true
52- }
53- }
74+ "extension" : true ,
75+ "outputDir" : " jupyterlab_gitplus/labextension"
76+ },
77+ "styleModule" : " style/index.js"
78+ }
0 commit comments