123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- {
- "name": "@elyra/pipeline-editor-extension",
- "version": "3.9.0-dev",
- "description": "JupyterLab extension - Visual editor to build Notebook pipelines",
- "keywords": [
- "jupyter",
- "jupyterlab",
- "jupyterlab-extension"
- ],
- "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:test": "tsc --build tsconfig.test.json",
- "build": "jlpm run build:lib && jlpm run build:labextension:dev",
- "build:prod": "jlpm run build:lib && jlpm run build:labextension",
- "build:lib": "tsc",
- "build:labextension": "jupyter labextension build .",
- "build:labextension:dev": "jupyter labextension build --development True .",
- "clean": "rimraf lib tsconfig.tsbuildinfo ../../dist/labextensions/@elyra/metadata-extension",
- "lab:dev": "jupyter labextension develop --overwrite ../../dist/labextensions/@elyra/metadata-extension",
- "dist": "npm pack .",
- "prepare": "npm run build ",
- "test": "FORCE_COLOR=true jest",
- "watch": "run-p watch:src watch:labextension",
- "watch:src": "tsc -w",
- "watch:labextension": "jupyter labextension watch .",
- "lab:install": "jupyter labextension install --no-build",
- "lab:uninstall": "jupyter labextension uninstall --no-build",
- "link:dev": "yarn link @jupyterlab/builder",
- "unlink:dev": "yarn unlink @jupyterlab/builder"
- },
- "dependencies": {
- "@elyra/metadata-common": "3.9.0-dev",
- "@elyra/pipeline-editor": "~1.9.0",
- "@elyra/pipeline-services": "~1.9.0",
- "@elyra/services": "3.9.0-dev",
- "@elyra/ui-components": "3.9.0-dev",
- "@jupyterlab/application": "^3.4.0",
- "@jupyterlab/apputils": "^3.4.0",
- "@jupyterlab/builder": "^3.4.0",
- "@jupyterlab/coreutils": "^5.4.0",
- "@jupyterlab/docregistry": "^3.4.0",
- "@jupyterlab/filebrowser": "^3.4.0",
- "@jupyterlab/filebrowser-extension": "^3.4.0",
- "@jupyterlab/fileeditor": "^3.4.0",
- "@jupyterlab/launcher": "^3.4.0",
- "@jupyterlab/mainmenu": "^3.4.0",
- "@jupyterlab/notebook": "^3.4.0",
- "@jupyterlab/outputarea": "^3.4.0",
- "@jupyterlab/services": "^6.4.0",
- "@jupyterlab/ui-components": "^3.4.0",
- "@lumino/algorithm": "^1.3.3",
- "@lumino/coreutils": "^1.5.6",
- "@lumino/disposable": "^1.4.3",
- "@lumino/dragdrop": "^1.7.1",
- "@lumino/messaging": "^1.4.3",
- "@lumino/signaling": "^1.4.3",
- "@lumino/widgets": "^1.19.0",
- "@material-ui/lab": "^4.0.0-alpha.18",
- "autoprefixer": "^9.6.0",
- "carbon-components": "~10.8.1",
- "json-loader": "^0.5.7",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-intl": "^5.10.15",
- "react-redux": "^7.2.0",
- "react-scripts": "4.0.3",
- "swr": "^0.5.6",
- "uuid": "^3.4.0"
- },
- "devDependencies": {
- "@types/jest": "^23.3.11",
- "@types/node": "^12.0.10",
- "@types/react": "17.0.0",
- "@types/react-dom": "17.0.0",
- "@types/react-intl": "^3.0.0",
- "@types/uuid": "^3.4.7",
- "cheerio": "^1.0.0-rc.3",
- "jest": "^24.7.1",
- "jest-raw-loader": "^1.0.1",
- "rimraf": "^3.0.2",
- "source-map-loader": "^0.2.4",
- "ts-jest": "^24.0.2",
- "ts-loader": "^6.2.1",
- "typescript": "~4.1.3"
- },
- "resolutions": {
- "@types/react": "17.0.0"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true,
- "schemaDir": "schema",
- "outputDir": "../../dist/labextensions/@elyra/pipeline-editor-extension"
- }
- }
|