@galaxyproject/jupyterlite 0.0.5 → 0.0.6
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/package.json +5 -2
- package/static/dist/_output/jupyter-lite.json +37 -22
- package/static/dist/_output/pypi/attrs-25.3.0-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/fastjsonschema-2.21.1-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/gxy-0.0.0-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/jsonschema-4.23.0-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/jsonschema_specifications-2025.4.1-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/jupyter_core-5.7.2-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/narwhals-1.38.2-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/nbformat-5.10.4-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/packaging-25.0-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/platformdirs-4.3.8-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/plotly-6.0.1-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/referencing-0.36.2-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/traitlets-5.14.3-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/typing_extensions-4.13.2-py3-none-any.whl +0 -0
- package/static/dist/_output/pypi/all.json +0 -28
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galaxyproject/jupyterlite",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"static/dist"
|
|
7
7
|
],
|
|
8
8
|
"scripts": {
|
|
9
|
-
"build": "webpack && npm run build:jupyter && npm run build:
|
|
9
|
+
"build": "webpack && npm run build:jupyter && npm run build:extension && npm run build:gxy && npm run build:patch && npm run build:index",
|
|
10
10
|
"build:extension": "node install-extension.js",
|
|
11
11
|
"build:gxy": "cd gxy && python -m build --wheel",
|
|
12
12
|
"build:index": "cpx src/index.js static/dist",
|
|
@@ -23,5 +23,8 @@
|
|
|
23
23
|
"typescript": "^5.4.2",
|
|
24
24
|
"webpack": "^5.89.0",
|
|
25
25
|
"webpack-cli": "^5.1.4"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"node-fetch": "^3.3.2"
|
|
26
29
|
}
|
|
27
30
|
}
|
|
@@ -5,21 +5,6 @@
|
|
|
5
5
|
"appVersion": "0.5.1",
|
|
6
6
|
"baseUrl": "./",
|
|
7
7
|
"defaultKernelName": "python",
|
|
8
|
-
"disabledExtensions": [
|
|
9
|
-
"@jupyterlab/filebrowser-extension",
|
|
10
|
-
"@jupyterlab/launcher-extension",
|
|
11
|
-
"@jupyterlab/running-extension",
|
|
12
|
-
"@jupyterlab/toc-extension",
|
|
13
|
-
"@jupyterlab/fileeditor-extension:plugin",
|
|
14
|
-
"@jupyterlab/fileeditor-extension:cursor-position",
|
|
15
|
-
"@jupyterlab/fileeditor-extension:completer",
|
|
16
|
-
"@jupyterlab/fileeditor-extension:language-server",
|
|
17
|
-
"@jupyterlab/fileeditor-extension:editor-syntax-status",
|
|
18
|
-
"@jupyterlab/fileeditor-extension:tab-space-status",
|
|
19
|
-
"@jupyterlab/notebook-extension:toc",
|
|
20
|
-
"@jupyterlite/application-extension:share-file",
|
|
21
|
-
"@jupyterlab/tooltip-extension:files"
|
|
22
|
-
],
|
|
23
8
|
"faviconUrl": "./lab/favicon.ico",
|
|
24
9
|
"federated_extensions": [
|
|
25
10
|
{
|
|
@@ -28,17 +13,17 @@
|
|
|
28
13
|
"load": "static/remoteEntry.3ac7f76fb22d01270496.js",
|
|
29
14
|
"name": "@jupyterlite/pyodide-kernel-extension"
|
|
30
15
|
},
|
|
31
|
-
{
|
|
32
|
-
"extension": "./extension",
|
|
33
|
-
"load": "entry.js",
|
|
34
|
-
"name": "jl-galaxy"
|
|
35
|
-
},
|
|
36
16
|
{
|
|
37
17
|
"extension": "./extension",
|
|
38
18
|
"liteExtension": false,
|
|
39
19
|
"load": "static/remoteEntry.5cbb9d2323598fbda535.js",
|
|
40
20
|
"name": "jupyterlab_pygments",
|
|
41
21
|
"style": "./style"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "jl-galaxy",
|
|
25
|
+
"load": "entry.js",
|
|
26
|
+
"extension": "./extension"
|
|
42
27
|
}
|
|
43
28
|
],
|
|
44
29
|
"fileTypes": {
|
|
@@ -321,11 +306,41 @@
|
|
|
321
306
|
"@jupyterlite/pyodide-kernel-extension:kernel": {
|
|
322
307
|
"loadPyodideOptions": {
|
|
323
308
|
"packages": [
|
|
324
|
-
"../../../../pypi/gxy-0.0.0-py3-none-any.whl"
|
|
309
|
+
"../../../../pypi/gxy-0.0.0-py3-none-any.whl",
|
|
310
|
+
"../../../../pypi/attrs-25.3.0-py3-none-any.whl",
|
|
311
|
+
"../../../../pypi/fastjsonschema-2.21.1-py3-none-any.whl",
|
|
312
|
+
"../../../../pypi/gxy-0.0.0-py3-none-any.whl",
|
|
313
|
+
"../../../../pypi/jsonschema-4.23.0-py3-none-any.whl",
|
|
314
|
+
"../../../../pypi/jsonschema_specifications-2025.4.1-py3-none-any.whl",
|
|
315
|
+
"../../../../pypi/jupyter_core-5.7.2-py3-none-any.whl",
|
|
316
|
+
"../../../../pypi/narwhals-1.38.2-py3-none-any.whl",
|
|
317
|
+
"../../../../pypi/nbformat-5.10.4-py3-none-any.whl",
|
|
318
|
+
"../../../../pypi/packaging-25.0-py3-none-any.whl",
|
|
319
|
+
"../../../../pypi/platformdirs-4.3.8-py3-none-any.whl",
|
|
320
|
+
"../../../../pypi/plotly-6.0.1-py3-none-any.whl",
|
|
321
|
+
"../../../../pypi/referencing-0.36.2-py3-none-any.whl",
|
|
322
|
+
"../../../../pypi/traitlets-5.14.3-py3-none-any.whl",
|
|
323
|
+
"../../../../pypi/typing_extensions-4.13.2-py3-none-any.whl",
|
|
324
|
+
"rpds-py"
|
|
325
325
|
]
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
|
-
}
|
|
328
|
+
},
|
|
329
|
+
"disabledExtensions": [
|
|
330
|
+
"@jupyterlab/filebrowser-extension",
|
|
331
|
+
"@jupyterlab/launcher-extension",
|
|
332
|
+
"@jupyterlab/running-extension",
|
|
333
|
+
"@jupyterlab/toc-extension",
|
|
334
|
+
"@jupyterlab/fileeditor-extension:plugin",
|
|
335
|
+
"@jupyterlab/fileeditor-extension:cursor-position",
|
|
336
|
+
"@jupyterlab/fileeditor-extension:completer",
|
|
337
|
+
"@jupyterlab/fileeditor-extension:language-server",
|
|
338
|
+
"@jupyterlab/fileeditor-extension:editor-syntax-status",
|
|
339
|
+
"@jupyterlab/fileeditor-extension:tab-space-status",
|
|
340
|
+
"@jupyterlab/notebook-extension:toc",
|
|
341
|
+
"@jupyterlite/application-extension:share-file",
|
|
342
|
+
"@jupyterlab/tooltip-extension:files"
|
|
343
|
+
]
|
|
329
344
|
},
|
|
330
345
|
"jupyter-lite-schema-version": 0
|
|
331
346
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"gxy": {
|
|
3
|
-
"releases": {
|
|
4
|
-
"0.0.0": [
|
|
5
|
-
{
|
|
6
|
-
"comment_text": "",
|
|
7
|
-
"digests": {
|
|
8
|
-
"md5": "aaaf4a39a1b09914421e1217fdd80ad9",
|
|
9
|
-
"sha256": "6a71c41fcd17283c8259d1011e8c5f8e297850357594c7c20407720d4985d05f"
|
|
10
|
-
},
|
|
11
|
-
"downloads": -1,
|
|
12
|
-
"filename": "gxy-0.0.0-py3-none-any.whl",
|
|
13
|
-
"has_sig": false,
|
|
14
|
-
"md5_digest": "aaaf4a39a1b09914421e1217fdd80ad9",
|
|
15
|
-
"packagetype": "bdist_wheel",
|
|
16
|
-
"python_version": "py3",
|
|
17
|
-
"requires_python": ">=3.7",
|
|
18
|
-
"size": 3919,
|
|
19
|
-
"upload_time": "2025-05-09T17:32:52.344251Z",
|
|
20
|
-
"upload_time_iso_8601": "2025-05-09T17:32:52.344251Z",
|
|
21
|
-
"url": "./gxy-0.0.0-py3-none-any.whl",
|
|
22
|
-
"yanked": false,
|
|
23
|
-
"yanked_reason": null
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|