12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- {
- "name": "@jupyterlab/ui-components",
- "version": "3.4.3",
- "description": "JupyterLab - UI components written in React",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "sideEffects": [
- "style/**/*"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "files": [
- "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc -b",
- "build:storybook": "build-storybook -c .storybook",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "cleansvg": "svgo --config svgo.yaml",
- "docs": "typedoc src",
- "docs:init": "bash docs/build.sh",
- "storybook": "start-storybook -p 9001 -c .storybook",
- "test": "jest",
- "test:cov": "jest --collect-coverage",
- "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
- "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@blueprintjs/core": "^3.36.0",
- "@blueprintjs/select": "^3.15.0",
- "@jupyterlab/coreutils": "^5.4.3",
- "@jupyterlab/translation": "^3.4.3",
- "@lumino/algorithm": "^1.9.0",
- "@lumino/commands": "^1.19.0",
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/messaging": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "@lumino/virtualdom": "^1.14.0",
- "@lumino/widgets": "^1.30.0",
- "@rjsf/core": "^3.1.0",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "typestyle": "^2.0.4"
- },
- "devDependencies": {
- "@babel/core": "^7.10.2",
- "@babel/preset-env": "^7.10.2",
- "@jupyterlab/testutils": "^3.4.3",
- "@storybook/addon-actions": "6.0.20",
- "@storybook/react": "6.0.20",
- "@types/jest": "^26.0.10",
- "@types/react": "^17.0.0",
- "@types/webpack-env": "^1.14.1",
- "babel-loader": "^8.0.6",
- "jest": "^26.4.2",
- "rimraf": "~3.0.0",
- "svgo": "^1.3.2",
- "ts-jest": "^26.3.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "peerDependencies": {
- "react": "^17.0.1"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extraStyles": {
- "blueprintjs": [
- "icons/lib/css/blueprint-icons.css",
- "core/lib/css/blueprint.css"
- ]
- }
- },
- "styleModule": "style/index.js"
- }
|