UNPKG

2.72 kBJSONView Raw
1{
2 "name": "@jupyterlab/ui-components",
3 "version": "3.4.3",
4 "description": "JupyterLab - UI components written in React",
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/**/*"
17 ],
18 "main": "lib/index.js",
19 "types": "lib/index.d.ts",
20 "style": "style/index.css",
21 "directories": {
22 "lib": "lib/"
23 },
24 "files": [
25 "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
26 "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
27 "style/index.js"
28 ],
29 "scripts": {
30 "build": "tsc -b",
31 "build:storybook": "build-storybook -c .storybook",
32 "build:test": "tsc --build tsconfig.test.json",
33 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
34 "cleansvg": "svgo --config svgo.yaml",
35 "docs": "typedoc src",
36 "docs:init": "bash docs/build.sh",
37 "storybook": "start-storybook -p 9001 -c .storybook",
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 "watch": "tsc -b --watch"
43 },
44 "dependencies": {
45 "@blueprintjs/core": "^3.36.0",
46 "@blueprintjs/select": "^3.15.0",
47 "@jupyterlab/coreutils": "^5.4.3",
48 "@jupyterlab/translation": "^3.4.3",
49 "@lumino/algorithm": "^1.9.0",
50 "@lumino/commands": "^1.19.0",
51 "@lumino/coreutils": "^1.11.0",
52 "@lumino/disposable": "^1.10.0",
53 "@lumino/signaling": "^1.10.0",
54 "@lumino/virtualdom": "^1.14.0",
55 "@lumino/widgets": "^1.30.0",
56 "@rjsf/core": "^3.1.0",
57 "react": "^17.0.1",
58 "react-dom": "^17.0.1",
59 "typestyle": "^2.0.4"
60 },
61 "devDependencies": {
62 "@babel/core": "^7.10.2",
63 "@babel/preset-env": "^7.10.2",
64 "@jupyterlab/testutils": "^3.4.3",
65 "@storybook/addon-actions": "6.0.20",
66 "@storybook/react": "6.0.20",
67 "@types/jest": "^26.0.10",
68 "@types/react": "^17.0.0",
69 "@types/webpack-env": "^1.14.1",
70 "babel-loader": "^8.0.6",
71 "jest": "^26.4.2",
72 "rimraf": "~3.0.0",
73 "svgo": "^1.3.2",
74 "ts-jest": "^26.3.0",
75 "typedoc": "~0.21.2",
76 "typescript": "~4.1.3"
77 },
78 "peerDependencies": {
79 "react": "^17.0.1"
80 },
81 "publishConfig": {
82 "access": "public"
83 },
84 "jupyterlab": {
85 "extraStyles": {
86 "blueprintjs": [
87 "icons/lib/css/blueprint-icons.css",
88 "core/lib/css/blueprint.css"
89 ]
90 }
91 },
92 "styleModule": "style/index.js"
93}