UNPKG

2.32 kBJSONView Raw
1{
2 "name": "@jupyterlab/apputils",
3 "version": "4.3.4",
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 "test": "jest -i",
41 "test:cov": "jest -i --collect-coverage",
42 "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
43 "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
44 "watch": "tsc -b --watch"
45 },
46 "dependencies": {
47 "@jupyterlab/coreutils": "^6.2.4",
48 "@jupyterlab/observables": "^5.2.4",
49 "@jupyterlab/rendermime-interfaces": "^3.10.4",
50 "@jupyterlab/services": "^7.2.4",
51 "@jupyterlab/settingregistry": "^4.2.4",
52 "@jupyterlab/statedb": "^4.2.4",
53 "@jupyterlab/statusbar": "^4.2.4",
54 "@jupyterlab/translation": "^4.2.4",
55 "@jupyterlab/ui-components": "^4.2.4",
56 "@lumino/algorithm": "^2.0.1",
57 "@lumino/commands": "^2.3.0",
58 "@lumino/coreutils": "^2.1.2",
59 "@lumino/disposable": "^2.1.2",
60 "@lumino/domutils": "^2.0.1",
61 "@lumino/messaging": "^2.0.1",
62 "@lumino/signaling": "^2.1.2",
63 "@lumino/virtualdom": "^2.0.1",
64 "@lumino/widgets": "^2.3.2",
65 "@types/react": "^18.0.26",
66 "react": "^18.2.0",
67 "sanitize-html": "~2.12.1"
68 },
69 "devDependencies": {
70 "@jupyterlab/testing": "^4.2.4",
71 "@types/jest": "^29.2.0",
72 "@types/sanitize-html": "^2.11.0",
73 "jest": "^29.2.0",
74 "rimraf": "~5.0.5",
75 "typescript": "~5.1.6"
76 },
77 "publishConfig": {
78 "access": "public"
79 },
80 "styleModule": "style/index.js"
81}