1 | {
|
2 | "name": "@jupyterlab/docmanager",
|
3 | "version": "4.2.2",
|
4 | "description": "JupyterLab - Document Manager",
|
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 | "test": "jest",
|
38 | "test:cov": "jest --collect-coverage",
|
39 | "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
|
40 | "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
|
41 | "watch": "npm run test -- --watch"
|
42 | },
|
43 | "dependencies": {
|
44 | "@jupyterlab/apputils": "^4.3.2",
|
45 | "@jupyterlab/coreutils": "^6.2.2",
|
46 | "@jupyterlab/docregistry": "^4.2.2",
|
47 | "@jupyterlab/services": "^7.2.2",
|
48 | "@jupyterlab/statedb": "^4.2.2",
|
49 | "@jupyterlab/statusbar": "^4.2.2",
|
50 | "@jupyterlab/translation": "^4.2.2",
|
51 | "@jupyterlab/ui-components": "^4.2.2",
|
52 | "@lumino/algorithm": "^2.0.1",
|
53 | "@lumino/coreutils": "^2.1.2",
|
54 | "@lumino/disposable": "^2.1.2",
|
55 | "@lumino/messaging": "^2.0.1",
|
56 | "@lumino/polling": "^2.1.2",
|
57 | "@lumino/properties": "^2.0.1",
|
58 | "@lumino/signaling": "^2.1.2",
|
59 | "@lumino/widgets": "^2.3.2",
|
60 | "react": "^18.2.0"
|
61 | },
|
62 | "devDependencies": {
|
63 | "@jupyterlab/testing": "^4.2.2",
|
64 | "@types/jest": "^29.2.0",
|
65 | "jest": "^29.2.0",
|
66 | "rimraf": "~5.0.5",
|
67 | "typescript": "~5.1.6"
|
68 | },
|
69 | "publishConfig": {
|
70 | "access": "public"
|
71 | },
|
72 | "styleModule": "style/index.js"
|
73 | }
|