{ "name": "ipyparallel-labextension", "version": "8.7.0", "private": true, "description": "A JupyterLab extension for IPython Parallel.", "keywords": [ "ipython", "jupyter", "jupyterlab", "jupyterlab-extension" ], "homepage": "https://github.com/ipython/ipyparallel", "bugs": { "url": "https://github.com/ipython/ipyparallel/issues" }, "repository": { "type": "git", "url": "https://github.com/ipython/ipyparallel" }, "license": "BSD-3-Clause", "author": "Min Ragan-Kelley", "files": [ "lab/lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", "lab/schema/*.json", "lab/style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" ], "main": "lab/lib/index.js", "types": "lab/lib/index.d.ts", "scripts": { "build": "jlpm run build:lib && jlpm run build:labextension:dev", "build:labextension": "jupyter labextension build .", "build:labextension:dev": "jupyter labextension build --development True .", "build:lib": "tsc", "build:prod": "jlpm run build:lib && jlpm run build:labextension", "clean": "jlpm run clean:lib", "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", "clean:labextension": "rimraf ipyparallel/labextension", "clean:lib": "rimraf lab/lib tsconfig.tsbuildinfo", "eslint": "eslint . --ext .ts,.tsx --fix", "eslint:check": "eslint . --ext .ts,.tsx", "install:extension": "jupyter labextension develop --overwrite .", "lint": "prettier --check '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}' && jlpm eslint:check", "prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'", "prettier:check": "prettier --list-different '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'", "test": "mocha", "watch": "run-p watch:src watch:labextension", "watch:labextension": "jupyter labextension watch .", "watch:src": "tsc -w" }, "dependencies": { "@jupyterlab/application": "^4.0.6", "@jupyterlab/apputils": "^4.1.6", "@jupyterlab/codeeditor": "^4.0.6", "@jupyterlab/console": "^4.0.6", "@jupyterlab/coreutils": "^6.0.6", "@jupyterlab/nbformat": "^4.0.6", "@jupyterlab/notebook": "^4.0.6", "@jupyterlab/services": "^7.0.6", "@jupyterlab/settingregistry": "^4.0.6", "@jupyterlab/statedb": "^4.0.6", "@jupyterlab/ui-components": "^4.0.6", "@lumino/algorithm": "^2.0.1", "@lumino/commands": "^2.1.3", "@lumino/coreutils": "^2.1.2", "@lumino/domutils": "^2.0.1", "@lumino/dragdrop": "^2.1.3", "@lumino/messaging": "^2.0.1", "@lumino/polling": "^2.1.2", "@lumino/signaling": "^2.1.2", "@lumino/widgets": "^2.3.0", "react": "~18.2.0", "react-dom": "~18.2.0" }, "devDependencies": { "@jupyterlab/builder": "^4.0.6", "@types/react": "~18.2.24", "@types/react-dom": "~18.2.8", "@typescript-eslint/eslint-plugin": "^6.7.3", "@typescript-eslint/parser": "^6.7.3", "eslint": "^8.50.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "eslint-plugin-react": "^7.33.2", "npm-run-all": "^4.1.5", "prettier": "^3.0.3", "rimraf": "^5.0.5", "typescript": "~5.2.2" }, "resolutions": { "@types/react": "~17.0.0" }, "jupyterlab": { "extension": true, "schemaDir": "lab/schema", "webpackConfig": "lab/webpack.config.js", "outputDir": "ipyparallel/labextension" } }