@jupyterlite/pyodide-kernel-extension 0.6.0-alpha.2 → 0.6.0-alpha.4
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/lib/index.d.ts +2 -2
- package/lib/index.js +4 -4
- package/package.json +8 -7
- package/schema/kernel.v0.schema.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { JupyterFrontEndPlugin } from '@jupyterlab/application';
|
|
2
2
|
export * as KERNEL_SETTINGS_SCHEMA from '../schema/kernel.v0.schema.json';
|
|
3
|
-
declare const plugins:
|
|
3
|
+
declare const plugins: JupyterFrontEndPlugin<any>[];
|
|
4
4
|
export default plugins;
|
package/lib/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
// Copyright (c) Jupyter Development Team.
|
|
2
2
|
// Distributed under the terms of the Modified BSD License.
|
|
3
3
|
import { PageConfig, URLExt } from '@jupyterlab/coreutils';
|
|
4
|
-
import { IServiceWorkerManager
|
|
5
|
-
import { IKernelSpecs } from '@jupyterlite/kernel';
|
|
4
|
+
import { IServiceWorkerManager } from '@jupyterlite/server';
|
|
6
5
|
import { IBroadcastChannelWrapper } from '@jupyterlite/contents';
|
|
7
|
-
|
|
6
|
+
import { IKernelSpecs } from '@jupyterlite/kernel';
|
|
8
7
|
import KERNEL_ICON_SVG_STR from '../style/img/pyodide.svg';
|
|
8
|
+
export * as KERNEL_SETTINGS_SCHEMA from '../schema/kernel.v0.schema.json';
|
|
9
9
|
const KERNEL_ICON_URL = `data:image/svg+xml;base64,${btoa(KERNEL_ICON_SVG_STR)}`;
|
|
10
10
|
/**
|
|
11
11
|
* The default CDN fallback for Pyodide
|
|
12
12
|
*/
|
|
13
|
-
const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.27.
|
|
13
|
+
const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.27.4/full/pyodide.js';
|
|
14
14
|
/**
|
|
15
15
|
* The id for the extension, and key in the litePlugins.
|
|
16
16
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlite/pyodide-kernel-extension",
|
|
3
|
-
"version": "0.6.0-alpha.
|
|
3
|
+
"version": "0.6.0-alpha.4",
|
|
4
4
|
"description": "JupyterLite - Pyodide Kernel Extension",
|
|
5
5
|
"homepage": "https://github.com/jupyterlite/pyodide-kernel",
|
|
6
6
|
"bugs": {
|
|
@@ -47,14 +47,15 @@
|
|
|
47
47
|
"watch:labextension": "jupyter labextension watch ."
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@jupyterlab/
|
|
51
|
-
"@
|
|
52
|
-
"@jupyterlite/
|
|
53
|
-
"@jupyterlite/
|
|
54
|
-
"@jupyterlite/
|
|
50
|
+
"@jupyterlab/application": "^4.4.0-beta.1",
|
|
51
|
+
"@jupyterlab/coreutils": "^6.4.0-beta.1",
|
|
52
|
+
"@jupyterlite/contents": "^0.6.0-alpha.3",
|
|
53
|
+
"@jupyterlite/kernel": "^0.6.0-alpha.3",
|
|
54
|
+
"@jupyterlite/pyodide-kernel": "^0.6.0-alpha.4",
|
|
55
|
+
"@jupyterlite/server": "^0.6.0-alpha.3"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@jupyterlab/builder": "~4.4.0-
|
|
58
|
+
"@jupyterlab/builder": "~4.4.0-beta.1",
|
|
58
59
|
"rimraf": "^5.0.1",
|
|
59
60
|
"typescript": "~5.2.2"
|
|
60
61
|
},
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"pyodideUrl": {
|
|
9
9
|
"description": "The path to the main pyodide.js entry point",
|
|
10
10
|
"type": "string",
|
|
11
|
-
"default": "https://cdn.jsdelivr.net/pyodide/v0.27.
|
|
11
|
+
"default": "https://cdn.jsdelivr.net/pyodide/v0.27.4/full/pyodide.js",
|
|
12
12
|
"format": "uri"
|
|
13
13
|
},
|
|
14
14
|
"disablePyPIFallback": {
|