123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "name": "@jupyterlab/ui-components",
- "version": "2.1.0",
- "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",
- "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}"
- ],
- "sideEffects": [
- "style/**/*"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib",
- "cleansvg": "svgo --config svgo.yaml",
- "docs": "typedoc src",
- "prepublishOnly": "npm run build",
- "storybook": "start-storybook -p 9001 -c .storybook",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@blueprintjs/core": "^3.22.2",
- "@blueprintjs/select": "^3.11.2",
- "@jupyterlab/coreutils": "^4.1.0",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/signaling": "^1.3.5",
- "@lumino/virtualdom": "^1.6.1",
- "@lumino/widgets": "^1.11.1",
- "react": "~16.9.0",
- "react-dom": "~16.9.0",
- "typestyle": "^2.0.4"
- },
- "devDependencies": {
- "@babel/core": "^7.5.0",
- "@babel/preset-env": "^7.7.6",
- "@storybook/addon-actions": "^5.2.5",
- "@storybook/react": "^5.2.5",
- "@types/react": "~16.9.16",
- "@types/webpack-env": "^1.14.1",
- "awesome-typescript-loader": "^5.2.1",
- "babel-loader": "^8.0.6",
- "react-docgen-typescript-loader": "^3.3.0",
- "rimraf": "~3.0.0",
- "svgo": "^1.3.2",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3"
- },
- "peerDependencies": {
- "react": "~16.9.0"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extraStyles": {
- "blueprintjs": [
- "icons/lib/css/blueprint-icons.css",
- "core/lib/css/blueprint.css"
- ]
- }
- }
- }
|