UNPKG

2.37 kBJSONView Raw
1{
2 "name": "@jupyterlab/apputils",
3 "version": "4.1.6",
4 "description": "JupyterLab - Application Utilities",
5 "keywords": [
6 "jupyter",
7 "jupyterlab",
8 "jupyterlab-extension"
9 ],
10 "homepage": "https://github.com/jupyterlab/jupyterlab",
11 "bugs": {
12 "url": "https://github.com/jupyterlab/jupyterlab/issues"
13 },
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/jupyterlab/jupyterlab.git"
17 },
18 "license": "BSD-3-Clause",
19 "author": "Project Jupyter",
20 "sideEffects": [
21 "style/*.css",
22 "style/index.js"
23 ],
24 "main": "lib/index.js",
25 "types": "lib/index.d.ts",
26 "style": "style/index.css",
27 "directories": {
28 "lib": "lib/"
29 },
30 "files": [
31 "lib/**/*.{d.ts,js,js.map}",
32 "style/*.css",
33 "style/index.js",
34 "src/**/*.{ts,tsx}"
35 ],
36 "scripts": {
37 "build": "tsc -b",
38 "build:test": "tsc --build tsconfig.test.json",
39 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
40 "docs": "typedoc src",
41 "test": "jest -i",
42 "test:cov": "jest -i --collect-coverage",
43 "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
44 "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
45 "watch": "tsc -b --watch"
46 },
47 "dependencies": {
48 "@jupyterlab/coreutils": "^6.0.6",
49 "@jupyterlab/observables": "^5.0.6",
50 "@jupyterlab/rendermime-interfaces": "^3.8.6",
51 "@jupyterlab/services": "^7.0.6",
52 "@jupyterlab/settingregistry": "^4.0.6",
53 "@jupyterlab/statedb": "^4.0.6",
54 "@jupyterlab/statusbar": "^4.0.6",
55 "@jupyterlab/translation": "^4.0.6",
56 "@jupyterlab/ui-components": "^4.0.6",
57 "@lumino/algorithm": "^2.0.1",
58 "@lumino/commands": "^2.1.3",
59 "@lumino/coreutils": "^2.1.2",
60 "@lumino/disposable": "^2.1.2",
61 "@lumino/domutils": "^2.0.1",
62 "@lumino/messaging": "^2.0.1",
63 "@lumino/signaling": "^2.1.2",
64 "@lumino/virtualdom": "^2.0.1",
65 "@lumino/widgets": "^2.3.0",
66 "@types/react": "^18.0.26",
67 "react": "^18.2.0",
68 "sanitize-html": "~2.7.3"
69 },
70 "devDependencies": {
71 "@jupyterlab/testing": "^4.0.6",
72 "@types/jest": "^29.2.0",
73 "@types/sanitize-html": "^2.3.1",
74 "jest": "^29.2.0",
75 "rimraf": "~3.0.0",
76 "typedoc": "~0.24.7",
77 "typescript": "~5.0.4"
78 },
79 "publishConfig": {
80 "access": "public"
81 },
82 "styleModule": "style/index.js"
83}