UNPKG

2.59 kBJSONView Raw
1{
2 "name": "@jupyterlab/cells",
3 "version": "4.1.6",
4 "description": "JupyterLab - Notebook Cells",
5 "homepage": "https://github.com/jupyterlab/jupyterlab",
6 "bugs": {
7 "url": "https://github.com/jupyterlab/jupyterlab/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jupyterlab/jupyterlab.git"
12 },
13 "license": "BSD-3-Clause",
14 "author": "Project Jupyter",
15 "sideEffects": [
16 "style/*.css",
17 "style/index.js"
18 ],
19 "main": "lib/index.js",
20 "types": "lib/index.d.ts",
21 "style": "style/index.css",
22 "directories": {
23 "lib": "lib/"
24 },
25 "files": [
26 "lib/*.d.ts",
27 "lib/*.js.map",
28 "lib/*.js",
29 "style/*.css",
30 "style/index.js",
31 "src/**/*.{ts,tsx}"
32 ],
33 "scripts": {
34 "build": "tsc -b",
35 "build:test": "tsc --build tsconfig.test.json",
36 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
37 "docs": "typedoc src",
38 "test": "jest",
39 "test:cov": "jest --collect-coverage",
40 "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
41 "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
42 "test:watch": "jest --runInBand --watch",
43 "watch": "tsc -b --watch"
44 },
45 "dependencies": {
46 "@codemirror/state": "^6.2.0",
47 "@codemirror/view": "^6.9.6",
48 "@jupyter/ydoc": "^1.1.1",
49 "@jupyterlab/apputils": "^4.2.6",
50 "@jupyterlab/attachments": "^4.1.6",
51 "@jupyterlab/codeeditor": "^4.1.6",
52 "@jupyterlab/codemirror": "^4.1.6",
53 "@jupyterlab/coreutils": "^6.1.6",
54 "@jupyterlab/documentsearch": "^4.1.6",
55 "@jupyterlab/filebrowser": "^4.1.6",
56 "@jupyterlab/nbformat": "^4.1.6",
57 "@jupyterlab/observables": "^5.1.6",
58 "@jupyterlab/outputarea": "^4.1.6",
59 "@jupyterlab/rendermime": "^4.1.6",
60 "@jupyterlab/services": "^7.1.6",
61 "@jupyterlab/toc": "^6.1.6",
62 "@jupyterlab/translation": "^4.1.6",
63 "@jupyterlab/ui-components": "^4.1.6",
64 "@lumino/algorithm": "^2.0.1",
65 "@lumino/coreutils": "^2.1.2",
66 "@lumino/domutils": "^2.0.1",
67 "@lumino/dragdrop": "^2.1.4",
68 "@lumino/messaging": "^2.0.1",
69 "@lumino/polling": "^2.1.2",
70 "@lumino/signaling": "^2.1.2",
71 "@lumino/virtualdom": "^2.0.1",
72 "@lumino/widgets": "^2.3.1",
73 "react": "^18.2.0"
74 },
75 "devDependencies": {
76 "@jupyterlab/testing": "^4.1.6",
77 "@types/jest": "^29.2.0",
78 "@types/react": "^18.0.26",
79 "jest": "^29.2.0",
80 "rimraf": "~5.0.5",
81 "typedoc": "~0.24.7",
82 "typescript": "~5.1.6"
83 },
84 "publishConfig": {
85 "access": "public"
86 },
87 "styleModule": "style/index.js"
88}