123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "@elyra/ui-components",
- "version": "3.9.0-dev",
- "description": "JupyterLab - UI components for use in elyra",
- "keywords": [
- "jupyter",
- "jupyterlab"
- ],
- "homepage": "https://github.com/elyra-ai/elyra",
- "bugs": {
- "url": "https://github.com/elyra-ai/elyra/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/elyra-ai/elyra/"
- },
- "license": "Apache-2.0",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "files": [
- "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
- "src/**/*.{ts,tsx}",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
- ],
- "scripts": {
- "build": "tsc",
- "clean": "rimraf lib",
- "dist": "npm pack .",
- "prepare": "npm run build",
- "watch": "tsc -w",
- "lab:install": "jupyter labextension link --no-build",
- "lab:uninstall": "jupyter labextension unlink --no-build"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^3.4.0",
- "@jupyterlab/ui-components": "^3.4.0",
- "@material-ui/core": "^4.12.1",
- "@material-ui/icons": "^4.2.1",
- "@material-ui/lab": "^4.0.0-alpha.18",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-json-tree": "^0.11.2"
- },
- "devDependencies": {
- "@types/react-json-tree": "^0.6.11",
- "rimraf": "^3.0.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": false,
- "outputDir": "../../dist/labextensions/@elyra/ui-components"
- }
- }
|