@jupyterlite/pyodide-kernel-extension 0.7.0-beta.0 → 0.7.0-rc.0

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.
Files changed (2) hide show
  1. package/lib/index.js +2 -2
  2. package/package.json +9 -18
package/lib/index.js CHANGED
@@ -2,8 +2,8 @@
2
2
  // Distributed under the terms of the Modified BSD License.
3
3
  import { PageConfig, URLExt } from '@jupyterlab/coreutils';
4
4
  import { ILoggerRegistry } from '@jupyterlab/logconsole';
5
- import { IServiceWorkerManager } from '@jupyterlite/server';
6
- import { IKernelSpecs } from '@jupyterlite/kernel';
5
+ import { IServiceWorkerManager } from '@jupyterlite/apputils';
6
+ import { IKernelSpecs } from '@jupyterlite/services';
7
7
  import KERNEL_ICON_SVG_STR from '../style/img/pyodide.svg';
8
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)}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlite/pyodide-kernel-extension",
3
- "version": "0.7.0-beta.0",
3
+ "version": "0.7.0-rc.0",
4
4
  "description": "JupyterLite - Pyodide Kernel Extension",
5
5
  "homepage": "https://github.com/jupyterlite/pyodide-kernel",
6
6
  "bugs": {
@@ -47,16 +47,15 @@
47
47
  "watch:labextension": "jupyter labextension watch ."
48
48
  },
49
49
  "dependencies": {
50
- "@jupyterlab/application": "^4.5.0-beta.1",
51
- "@jupyterlab/coreutils": "^6.5.0-beta.1",
52
- "@jupyterlab/logconsole": "^4.5.0-beta.1",
53
- "@jupyterlite/contents": "^0.7.0-beta.0",
54
- "@jupyterlite/kernel": "^0.7.0-beta.0",
55
- "@jupyterlite/pyodide-kernel": "^0.7.0-beta.0",
56
- "@jupyterlite/server": "^0.7.0-beta.0"
50
+ "@jupyterlab/application": "^4.5.0",
51
+ "@jupyterlab/coreutils": "^6.5.0",
52
+ "@jupyterlab/logconsole": "^4.5.0",
53
+ "@jupyterlite/apputils": "^0.7.0-rc.0",
54
+ "@jupyterlite/pyodide-kernel": "^0.7.0-rc.0",
55
+ "@jupyterlite/services": "^0.7.0-rc.0"
57
56
  },
58
57
  "devDependencies": {
59
- "@jupyterlab/builder": "^4.5.0-beta.0",
58
+ "@jupyterlab/builder": "^4.5.0",
60
59
  "rimraf": "^6.0.1",
61
60
  "typescript": "~5.2.2"
62
61
  },
@@ -68,15 +67,7 @@
68
67
  "outputDir": "../../jupyterlite_pyodide_kernel/labextension",
69
68
  "webpackConfig": "webpack.config.js",
70
69
  "sharedPackages": {
71
- "@jupyterlite/kernel": {
72
- "bundled": false,
73
- "singleton": true
74
- },
75
- "@jupyterlite/server": {
76
- "bundled": false,
77
- "singleton": true
78
- },
79
- "@jupyterlite/contents": {
70
+ "@jupyterlite/services": {
80
71
  "bundled": false,
81
72
  "singleton": true
82
73
  }