@datalayer/jupyter-lexical 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +7 -0
- package/lib/components/InsertEquationDialog.d.ts +6 -0
- package/lib/components/InsertEquationDialog.js +17 -0
- package/lib/components/InsertEquationDialog.js.map +1 -0
- package/lib/components/InsertImageDialog.d.ts +13 -0
- package/lib/components/InsertImageDialog.js +48 -0
- package/lib/components/InsertImageDialog.js.map +1 -0
- package/lib/components/JupyterCellComponent.d.ts +2 -0
- package/lib/components/JupyterCellComponent.js +12 -0
- package/lib/components/JupyterCellComponent.js.map +1 -0
- package/lib/components/JupyterOutputComponent.d.ts +13 -0
- package/lib/components/JupyterOutputComponent.js +8 -0
- package/lib/components/JupyterOutputComponent.js.map +1 -0
- package/lib/convert/LexicalToNbFormat.d.ts +4 -0
- package/lib/convert/LexicalToNbFormat.js +100 -0
- package/lib/convert/LexicalToNbFormat.js.map +1 -0
- package/lib/convert/NbFormatToLexical.d.ts +4 -0
- package/lib/convert/NbFormatToLexical.js +31 -0
- package/lib/convert/NbFormatToLexical.js.map +1 -0
- package/lib/convert/markdown/MarkdownExport.d.ts +11 -0
- package/lib/convert/markdown/MarkdownExport.js +129 -0
- package/lib/convert/markdown/MarkdownExport.js.map +1 -0
- package/lib/convert/markdown/MarkdownImport.d.ts +2 -0
- package/lib/convert/markdown/MarkdownImport.js +246 -0
- package/lib/convert/markdown/MarkdownImport.js.map +1 -0
- package/lib/convert/markdown/MarkdownShortcuts.d.ts +10 -0
- package/lib/convert/markdown/MarkdownShortcuts.js +254 -0
- package/lib/convert/markdown/MarkdownShortcuts.js.map +1 -0
- package/lib/convert/markdown/MarkdownTransformers.d.ts +39 -0
- package/lib/convert/markdown/MarkdownTransformers.js +242 -0
- package/lib/convert/markdown/MarkdownTransformers.js.map +1 -0
- package/lib/convert/markdown/convertToMarkdown.d.ts +1 -0
- package/lib/convert/markdown/convertToMarkdown.js +126 -0
- package/lib/convert/markdown/convertToMarkdown.js.map +1 -0
- package/lib/convert/markdown/index.d.ts +17 -0
- package/lib/convert/markdown/index.js +46 -0
- package/lib/convert/markdown/index.js.map +1 -0
- package/lib/convert/markdown/utils.d.ts +24 -0
- package/lib/convert/markdown/utils.js +303 -0
- package/lib/convert/markdown/utils.js.map +1 -0
- package/lib/convert/transformers/MarkdownTransformers.d.ts +13 -0
- package/lib/convert/transformers/MarkdownTransformers.js +178 -0
- package/lib/convert/transformers/MarkdownTransformers.js.map +1 -0
- package/lib/examples/App.d.ts +1 -0
- package/lib/examples/App.js +22 -0
- package/lib/examples/App.js.map +1 -0
- package/lib/examples/Editor.d.ts +9 -0
- package/lib/examples/Editor.js +81 -0
- package/lib/examples/Editor.js.map +1 -0
- package/lib/examples/Example.d.ts +1 -0
- package/lib/examples/Example.js +11 -0
- package/lib/examples/Example.js.map +1 -0
- package/lib/examples/content/Example.ipynb.json +98 -0
- package/lib/examples/content/Example.lexical.json +259 -0
- package/lib/examples/context/LexicalContext.d.ts +13 -0
- package/lib/examples/context/LexicalContext.js +22 -0
- package/lib/examples/context/LexicalContext.js.map +1 -0
- package/lib/examples/plugins/ToolbarPlugin.d.ts +2 -0
- package/lib/examples/plugins/ToolbarPlugin.js +448 -0
- package/lib/examples/plugins/ToolbarPlugin.js.map +1 -0
- package/lib/examples/plugins/TreeViewPlugin.d.ts +2 -0
- package/lib/examples/plugins/TreeViewPlugin.js +13 -0
- package/lib/examples/plugins/TreeViewPlugin.js.map +1 -0
- package/lib/examples/themes/Theme.d.ts +10 -0
- package/lib/examples/themes/Theme.js +94 -0
- package/lib/examples/themes/Theme.js.map +1 -0
- package/lib/hooks/useModal.d.ts +2 -0
- package/lib/hooks/useModal.js +39 -0
- package/lib/hooks/useModal.js.map +1 -0
- package/lib/images/yellow-flower-small.jpg +0 -0
- package/lib/index.d.ts +40 -0
- package/lib/index.js +55 -0
- package/lib/index.js.map +1 -0
- package/lib/jupyter/index.d.ts +0 -0
- package/lib/jupyter/index.js +6 -0
- package/lib/jupyter/index.js.map +1 -0
- package/lib/jupyter/lab/Example.d.ts +1 -0
- package/lib/jupyter/lab/Example.js +11 -0
- package/lib/jupyter/lab/Example.js.map +1 -0
- package/lib/jupyter/lab/__tests__/datalayer.spec.d.ts +0 -0
- package/lib/jupyter/lab/__tests__/datalayer.spec.js +11 -0
- package/lib/jupyter/lab/__tests__/datalayer.spec.js.map +1 -0
- package/lib/jupyter/lab/component/MockComponent.d.ts +2 -0
- package/lib/jupyter/lab/component/MockComponent.js +17 -0
- package/lib/jupyter/lab/component/MockComponent.js.map +1 -0
- package/lib/jupyter/lab/component/MockTab1.d.ts +2 -0
- package/lib/jupyter/lab/component/MockTab1.js +14 -0
- package/lib/jupyter/lab/component/MockTab1.js.map +1 -0
- package/lib/jupyter/lab/handler.d.ts +8 -0
- package/lib/jupyter/lab/handler.js +41 -0
- package/lib/jupyter/lab/handler.js.map +1 -0
- package/lib/jupyter/lab/index.d.ts +7 -0
- package/lib/jupyter/lab/index.js +73 -0
- package/lib/jupyter/lab/index.js.map +1 -0
- package/lib/jupyter/lab/widget.d.ts +6 -0
- package/lib/jupyter/lab/widget.js +18 -0
- package/lib/jupyter/lab/widget.js.map +1 -0
- package/lib/nodes/EquationNode.d.ts +31 -0
- package/lib/nodes/EquationNode.js +118 -0
- package/lib/nodes/EquationNode.js.map +1 -0
- package/lib/nodes/ImageNode.css +50 -0
- package/lib/nodes/ImageNode.d.ts +58 -0
- package/lib/nodes/ImageNode.js +275 -0
- package/lib/nodes/ImageNode.js.map +1 -0
- package/lib/nodes/JupyterCodeHighlightNode.d.ts +49 -0
- package/lib/nodes/JupyterCodeHighlightNode.js +165 -0
- package/lib/nodes/JupyterCodeHighlightNode.js.map +1 -0
- package/lib/nodes/JupyterCodeHighlighter.d.ts +28 -0
- package/lib/nodes/JupyterCodeHighlighter.js +522 -0
- package/lib/nodes/JupyterCodeHighlighter.js.map +1 -0
- package/lib/nodes/JupyterCodeNode.d.ts +50 -0
- package/lib/nodes/JupyterCodeNode.js +277 -0
- package/lib/nodes/JupyterCodeNode.js.map +1 -0
- package/lib/nodes/JupyterOutputNode.d.ts +58 -0
- package/lib/nodes/JupyterOutputNode.js +144 -0
- package/lib/nodes/JupyterOutputNode.js.map +1 -0
- package/lib/nodes/YouTubeNode.d.ts +28 -0
- package/lib/nodes/YouTubeNode.js +56 -0
- package/lib/nodes/YouTubeNode.js.map +1 -0
- package/lib/plugins/AutoEmbedPlugin.d.ts +17 -0
- package/lib/plugins/AutoEmbedPlugin.js +110 -0
- package/lib/plugins/AutoEmbedPlugin.js.map +1 -0
- package/lib/plugins/AutoLinkPlugin.d.ts +2 -0
- package/lib/plugins/AutoLinkPlugin.js +34 -0
- package/lib/plugins/AutoLinkPlugin.js.map +1 -0
- package/lib/plugins/CodeActionMenuPlugin.css +52 -0
- package/lib/plugins/CodeActionMenuPlugin.d.ts +12 -0
- package/lib/plugins/CodeActionMenuPlugin.js +108 -0
- package/lib/plugins/CodeActionMenuPlugin.js.map +1 -0
- package/lib/plugins/ComponentPickerMenuPlugin.d.ts +2 -0
- package/lib/plugins/ComponentPickerMenuPlugin.js +244 -0
- package/lib/plugins/ComponentPickerMenuPlugin.js.map +1 -0
- package/lib/plugins/EquationsPlugin.d.ts +21 -0
- package/lib/plugins/EquationsPlugin.js +48 -0
- package/lib/plugins/EquationsPlugin.js.map +1 -0
- package/lib/plugins/HorizontalRulePlugin.d.ts +2 -0
- package/lib/plugins/HorizontalRulePlugin.js +40 -0
- package/lib/plugins/HorizontalRulePlugin.js.map +1 -0
- package/lib/plugins/ImagesPlugin.d.ts +25 -0
- package/lib/plugins/ImagesPlugin.js +212 -0
- package/lib/plugins/ImagesPlugin.js.map +1 -0
- package/lib/plugins/JupyterPlugin.css +13 -0
- package/lib/plugins/JupyterPlugin.d.ts +16 -0
- package/lib/plugins/JupyterPlugin.js +169 -0
- package/lib/plugins/JupyterPlugin.js.map +1 -0
- package/lib/plugins/ListMaxIndentLevelPlugin.d.ts +4 -0
- package/lib/plugins/ListMaxIndentLevelPlugin.js +49 -0
- package/lib/plugins/ListMaxIndentLevelPlugin.js.map +1 -0
- package/lib/plugins/MardownPlugin.d.ts +2 -0
- package/lib/plugins/MardownPlugin.js +20 -0
- package/lib/plugins/MardownPlugin.js.map +1 -0
- package/lib/plugins/NbformatContentPlugin.d.ts +6 -0
- package/lib/plugins/NbformatContentPlugin.js +20 -0
- package/lib/plugins/NbformatContentPlugin.js.map +1 -0
- package/lib/plugins/TableOfContentsPlugin.css +87 -0
- package/lib/plugins/TableOfContentsPlugin.d.ts +3 -0
- package/lib/plugins/TableOfContentsPlugin.js +115 -0
- package/lib/plugins/TableOfContentsPlugin.js.map +1 -0
- package/lib/plugins/YouTubePlugin.d.ts +4 -0
- package/lib/plugins/YouTubePlugin.js +34 -0
- package/lib/plugins/YouTubePlugin.js.map +1 -0
- package/lib/ui/Button.css +40 -0
- package/lib/ui/Button.d.ts +18 -0
- package/lib/ui/Button.js +8 -0
- package/lib/ui/Button.js.map +1 -0
- package/lib/ui/ContentEditable.css +24 -0
- package/lib/ui/ContentEditable.d.ts +5 -0
- package/lib/ui/ContentEditable.js +20 -0
- package/lib/ui/ContentEditable.js.map +1 -0
- package/lib/ui/CopyButton.d.ts +7 -0
- package/lib/ui/CopyButton.js +47 -0
- package/lib/ui/CopyButton.js.map +1 -0
- package/lib/ui/Dialog.css +23 -0
- package/lib/ui/Dialog.d.ts +16 -0
- package/lib/ui/Dialog.js +21 -0
- package/lib/ui/Dialog.js.map +1 -0
- package/lib/ui/DropDown.d.ts +23 -0
- package/lib/ui/DropDown.js +119 -0
- package/lib/ui/DropDown.js.map +1 -0
- package/lib/ui/EquationEditor.css +42 -0
- package/lib/ui/EquationEditor.d.ts +18 -0
- package/lib/ui/EquationEditor.js +31 -0
- package/lib/ui/EquationEditor.js.map +1 -0
- package/lib/ui/FileInput.d.ts +15 -0
- package/lib/ui/FileInput.js +18 -0
- package/lib/ui/FileInput.js.map +1 -0
- package/lib/ui/ImageResizer.d.ts +16 -0
- package/lib/ui/ImageResizer.js +166 -0
- package/lib/ui/ImageResizer.js.map +1 -0
- package/lib/ui/Input.css +37 -0
- package/lib/ui/KatexEquationAlterer.css +45 -0
- package/lib/ui/KatexEquationAlterer.d.ts +7 -0
- package/lib/ui/KatexEquationAlterer.js +33 -0
- package/lib/ui/KatexEquationAlterer.js.map +1 -0
- package/lib/ui/KatexRenderer.d.ts +6 -0
- package/lib/ui/KatexRenderer.js +36 -0
- package/lib/ui/KatexRenderer.js.map +1 -0
- package/lib/ui/Modal.css +67 -0
- package/lib/ui/Modal.d.ts +15 -0
- package/lib/ui/Modal.js +58 -0
- package/lib/ui/Modal.js.map +1 -0
- package/lib/ui/Placeholder.css +29 -0
- package/lib/ui/Placeholder.d.ts +14 -0
- package/lib/ui/Placeholder.js +7 -0
- package/lib/ui/Placeholder.js.map +1 -0
- package/lib/ui/PrettierButton.css +20 -0
- package/lib/ui/PrettierButton.tsx_tmp +133 -0
- package/lib/ui/TextInput.d.ts +16 -0
- package/lib/ui/TextInput.js +20 -0
- package/lib/ui/TextInput.js.map +1 -0
- package/lib/utils/canUseDOM.d.ts +8 -0
- package/lib/utils/canUseDOM.js +16 -0
- package/lib/utils/canUseDOM.js.map +1 -0
- package/lib/utils/debouncer.d.ts +1 -0
- package/lib/utils/debouncer.js +24 -0
- package/lib/utils/debouncer.js.map +1 -0
- package/lib/utils/invariant.d.ts +8 -0
- package/lib/utils/invariant.js +23 -0
- package/lib/utils/invariant.js.map +1 -0
- package/lib/utils/join.d.ts +8 -0
- package/lib/utils/join.js +16 -0
- package/lib/utils/join.js.map +1 -0
- package/lib/utils/selection.d.ts +8 -0
- package/lib/utils/selection.js +14 -0
- package/lib/utils/selection.js.map +1 -0
- package/lib/utils/useLayoutEffect.d.ts +10 -0
- package/lib/utils/useLayoutEffect.js +19 -0
- package/lib/utils/useLayoutEffect.js.map +1 -0
- package/package.json +166 -0
- package/style/base.css +16 -0
- package/style/index.css +7 -0
- package/style/index.js +7 -0
package/package.json
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@datalayer/jupyter-lexical",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Jupyter UI for Lexical",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "lib/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib",
|
|
9
|
+
"style"
|
|
10
|
+
],
|
|
11
|
+
"keywords": [
|
|
12
|
+
"jupyter",
|
|
13
|
+
"jupyterlab",
|
|
14
|
+
"jupyterlab-extension",
|
|
15
|
+
"react",
|
|
16
|
+
"lexical"
|
|
17
|
+
],
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/datalayer/jupyter-ui.git",
|
|
21
|
+
"directory": "packages/lexical"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "gulp resources-to-lib && tsc && webpack && yarn build:lib && (yarn build:labextension:dev || true)",
|
|
25
|
+
"build:labextension": "jupyter labextension build .",
|
|
26
|
+
"build:labextension:dev": "jupyter labextension build --development True .",
|
|
27
|
+
"build:lib": "tsc",
|
|
28
|
+
"build:prod": "gulp resources-to-lib && tsc && jlpm clean && jlpm build:lib && jlpm build:labextension",
|
|
29
|
+
"build:tsc:watch:res": "gulp resources-to-lib-watch",
|
|
30
|
+
"build:tsc:watch:tsc": "tsc --watch",
|
|
31
|
+
"clean": "rimraf node_modules lib dist build tsconfig.tsbuildinfo",
|
|
32
|
+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
|
|
33
|
+
"clean:labextension": "rimraf datalayer/labextension",
|
|
34
|
+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
|
35
|
+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
|
|
36
|
+
"eslint": "jlpm eslint:check --fix",
|
|
37
|
+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
|
|
38
|
+
"install:extension": "jlpm build",
|
|
39
|
+
"jupyterlab": "run-p -c 'jupyterlab:*'",
|
|
40
|
+
"jupyterlab:start": "jupyter lab --watch --config=./dev/config/jupyter_server_config.py",
|
|
41
|
+
"jupyterlab:watch": "run-p -c watch:src watch:labextension",
|
|
42
|
+
"kill": "./../../dev/sh/kill.sh || true",
|
|
43
|
+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
|
|
44
|
+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
|
|
45
|
+
"prettier": "jlpm prettier:base --write --list-different",
|
|
46
|
+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
|
47
|
+
"prettier:check": "jlpm prettier:base --check",
|
|
48
|
+
"start": "run-p -c 'start:*'",
|
|
49
|
+
"start_:jupyter": "cd ./../.. && make start-jupyter-server",
|
|
50
|
+
"start:webpack": "webpack serve",
|
|
51
|
+
"stylelint": "jlpm stylelint:check --fix",
|
|
52
|
+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
|
|
53
|
+
"test": "jest --coverage",
|
|
54
|
+
"typedoc": "typedoc ./src",
|
|
55
|
+
"watch": "run-p watch:src watch:labextension",
|
|
56
|
+
"watch:labextension": "jupyter labextension watch .",
|
|
57
|
+
"watch:src": "tsc -w"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@datalayer/jupyter-react": "0.8.3",
|
|
61
|
+
"@datalayer/primer-addons": "0.2.1",
|
|
62
|
+
"@jupyterlab/application": "4.0.3",
|
|
63
|
+
"@jupyterlab/coreutils": "6.0.3",
|
|
64
|
+
"@jupyterlab/services": "7.0.3",
|
|
65
|
+
"@jupyterlab/settingregistry": "4.0.3",
|
|
66
|
+
"@lexical/react": "0.11.0",
|
|
67
|
+
"katex": "0.16.1",
|
|
68
|
+
"lexical": "0.11.0",
|
|
69
|
+
"lodash-es": "4.17.21",
|
|
70
|
+
"react": "18.2.0",
|
|
71
|
+
"react-dom": "18.2.0",
|
|
72
|
+
"styled-components": "5.3.10"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@babel/core": "7.21.0",
|
|
76
|
+
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
77
|
+
"@babel/preset-env": "7.20.2",
|
|
78
|
+
"@babel/preset-react": "7.18.6",
|
|
79
|
+
"@babel/preset-typescript": "7.21.0",
|
|
80
|
+
"@jupyterlab/builder": "4.0.3",
|
|
81
|
+
"@types/codemirror": "5.60.4",
|
|
82
|
+
"@types/katex": "0.14.0",
|
|
83
|
+
"@types/lodash-es": "4.17.6",
|
|
84
|
+
"@types/marked": "4.0.1",
|
|
85
|
+
"@types/node": "18.15.3",
|
|
86
|
+
"@types/plotly.js": "1.54.11",
|
|
87
|
+
"@types/prismjs": "1.26.0",
|
|
88
|
+
"@types/react": "18.2.12",
|
|
89
|
+
"@types/react-dom": "18.2.5",
|
|
90
|
+
"@types/styled-components": "5.1.26",
|
|
91
|
+
"@types/uuid": "8.3.0",
|
|
92
|
+
"@typescript-eslint/eslint-plugin": "4.8.1",
|
|
93
|
+
"@typescript-eslint/parser": "4.8.1",
|
|
94
|
+
"babel-loader": "9.1.2",
|
|
95
|
+
"bundle-loader": "0.5.6",
|
|
96
|
+
"css-loader": "5.2.4",
|
|
97
|
+
"eslint": "7.14.0",
|
|
98
|
+
"eslint-config-prettier": "6.15.0",
|
|
99
|
+
"eslint-plugin-prettier": "3.1.4",
|
|
100
|
+
"file-loader": "~5.0.2",
|
|
101
|
+
"gulp": "4.0.2",
|
|
102
|
+
"gulp-append-prepend": "1.0.8",
|
|
103
|
+
"gulp-filter": "6.0.0",
|
|
104
|
+
"gulp-watch": "5.0.1",
|
|
105
|
+
"html-webpack-plugin": "5.3.1",
|
|
106
|
+
"html-webpack-tags-plugin": "2.0.17",
|
|
107
|
+
"jest": "29.4.3",
|
|
108
|
+
"mkdirp": "1.0.3",
|
|
109
|
+
"npm-run-all": "4.1.5",
|
|
110
|
+
"prettier": "2.1.1",
|
|
111
|
+
"process": "0.11.10",
|
|
112
|
+
"raw-loader": "4.0.2",
|
|
113
|
+
"rimraf": "3.0.2",
|
|
114
|
+
"stream": "0.0.2",
|
|
115
|
+
"stream-browserify": "2.0.2",
|
|
116
|
+
"style-loader": "2.0.0",
|
|
117
|
+
"stylelint": "14.3.0",
|
|
118
|
+
"stylelint-config-prettier": "9.0.4",
|
|
119
|
+
"stylelint-config-recommended": "6.0.0",
|
|
120
|
+
"stylelint-config-standard": "~24.0.0",
|
|
121
|
+
"stylelint-prettier": "2.0.0",
|
|
122
|
+
"svg-url-loader": "7.1.1",
|
|
123
|
+
"typedoc": "0.20.37",
|
|
124
|
+
"typescript": "5.0.3",
|
|
125
|
+
"url-loader": "~3.0.0",
|
|
126
|
+
"watch": "~1.0.2",
|
|
127
|
+
"webpack": "5.74.0",
|
|
128
|
+
"webpack-cli": "4.10.0",
|
|
129
|
+
"webpack-dev-server": "4.9.3"
|
|
130
|
+
},
|
|
131
|
+
"sideEffects": [
|
|
132
|
+
"style/*.css",
|
|
133
|
+
"src/**/*.css",
|
|
134
|
+
"style/index.js"
|
|
135
|
+
],
|
|
136
|
+
"styleModule": "style/index.js",
|
|
137
|
+
"publishConfig": {
|
|
138
|
+
"access": "public"
|
|
139
|
+
},
|
|
140
|
+
"jupyterlab": {
|
|
141
|
+
"discovery": {
|
|
142
|
+
"server": {
|
|
143
|
+
"managers": [
|
|
144
|
+
"pip"
|
|
145
|
+
],
|
|
146
|
+
"base": {
|
|
147
|
+
"name": "jupyter_lexical"
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"extension": "./lib/jupyter/lab/index.js",
|
|
152
|
+
"outputDir": "jupyter_lexical/labextension",
|
|
153
|
+
"schemaDir": "schema"
|
|
154
|
+
},
|
|
155
|
+
"jupyter-releaser": {
|
|
156
|
+
"hooks": {
|
|
157
|
+
"before-build-npm": [
|
|
158
|
+
"python -m pip install jupyterlab==4.0.3",
|
|
159
|
+
"jlpm"
|
|
160
|
+
],
|
|
161
|
+
"before-build-python": [
|
|
162
|
+
"jlpm clean:all"
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
package/style/base.css
ADDED
package/style/index.css
ADDED