@jupyterlab/javascript-extension 4.0.0-alpha.1 → 4.0.0-alpha.12

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/README.md +3 -7
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,19 +1,15 @@
1
1
  # javascript-extension
2
2
 
3
- A JupyterLab extension for running Javascript from a notebook in JupyterLab
3
+ A JupyterLab extension for running Javascript from a notebook in JupyterLab.
4
4
 
5
- ## Prerequisites
6
-
7
- - JupyterLab ^0.27.0
5
+ This extension is in the official JupyterLab distribution.
8
6
 
9
7
  ## Usage
10
8
 
11
- To render VDOM output in IPython:
12
-
13
9
  ```python
14
10
  from IPython.display import Javascript
15
11
 
16
- Javascript('console.log("hello world");')
12
+ Javascript('alert("hello world");')
17
13
  ```
18
14
 
19
15
  ## Development
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/javascript-extension",
3
- "version": "4.0.0-alpha.1",
3
+ "version": "4.0.0-alpha.12",
4
4
  "description": "JupyterLab - Javascript Renderer",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -32,13 +32,13 @@
32
32
  "watch": "tsc -b --watch"
33
33
  },
34
34
  "dependencies": {
35
- "@jupyterlab/rendermime": "^4.0.0-alpha.1",
36
- "@jupyterlab/rendermime-interfaces": "^4.0.0-alpha.1"
35
+ "@jupyterlab/rendermime": "^4.0.0-alpha.12",
36
+ "@jupyterlab/rendermime-interfaces": "^3.8.0-alpha.12"
37
37
  },
38
38
  "devDependencies": {
39
39
  "rimraf": "~3.0.0",
40
- "typedoc": "~0.21.2",
41
- "typescript": "~4.1.3"
40
+ "typedoc": "~0.22.10",
41
+ "typescript": "~4.7.3"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"