{
    "name": "ipylab",
    "version": "1.1.0",
    "description": "Control JupyterLab from Python notebooks",
    "keywords": [
        "jupyter",
        "jupyterlab",
        "jupyterlab-extension",
        "widgets"
    ],
    "files": [
        "lib/**/*.js",
        "dist/*.js",
        "style/*.css",
        "style/*.js",
        "style/index.js"
    ],
    "homepage": "https://github.com/jtpio/ipylab",
    "bugs": {
        "url": "https://github.com/jtpio/ipylab/issues"
    },
    "license": "BSD-3-Clause",
    "author": {
        "name": "ipylab contributors",
        "email": ""
    },
    "main": "lib/index.js",
    "style": "style/widget.css",
    "styleModule": "style/style.js",
    "types": "./lib/index.d.ts",
    "sideEffects": [
        "style/*.css",
        "style/style.js",
        "style/index.js"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/jtpio/ipylab"
    },
    "scripts": {
        "build": "jlpm build:lib && jlpm build:labextension:dev",
        "build:labextension": "jupyter labextension build .",
        "build:labextension:dev": "jupyter labextension build --development True .",
        "build:lib": "tsc --sourceMap",
        "build:lib:prod": "tsc",
        "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
        "clean": "jlpm clean:lib",
        "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
        "clean:labextension": "rimraf ipylab/labextension ipylab/_version.py",
        "clean:lib": "rimraf lib tsconfig.tsbuildinfo",
        "clean:lintcache": "rimraf .eslintcache .stylelintcache",
        "eslint": "jlpm eslint:check --fix",
        "eslint:check": "eslint . --cache --ext .ts,.tsx",
        "install:extension": "jlpm build",
        "lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
        "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
        "prepack": "npm run build",
        "prettier": "jlpm prettier:base --write --list-different",
        "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
        "prettier:check": "jlpm prettier:base --check",
        "stylelint": "jlpm stylelint:check --fix",
        "stylelint:check": "stylelint --cache \"style/**/*.css\"",
        "watch": "run-p watch:src watch:labextension",
        "watch:labextension": "jupyter labextension watch .",
        "watch:lib": "tsc -w",
        "watch:src": "tsc -w --sourceMap"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    },
    "lint-staged": {
        "**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}": [
            "prettier --write",
            "git add"
        ],
        "**/*{.py}": [
            "black",
            "git add"
        ]
    },
    "dependencies": {
        "@jupyter-widgets/base": "^1 || ^2 || ^3 || ^4 || ^5 || ^6.0.5 || ^7 || ^8",
        "@jupyter-widgets/controls": "^3 || ^4 || ^5 || ^7 || ^8",
        "@jupyterlab/application": "^4.1",
        "@jupyterlab/apputils": "^4.1",
        "@jupyterlab/cells": "^4.1",
        "@jupyterlab/mainmenu": "^4.1",
        "@jupyterlab/notebook": "^4.1",
        "@jupyterlab/observables": "^5.0.4",
        "@lumino/algorithm": "^1.9.2 || ^2",
        "@lumino/commands": "^2",
        "@lumino/disposable": "^1.10.2 || ^2",
        "@lumino/messaging": "^1.10.2 || ^2",
        "@lumino/widgets": "^2"
    },
    "devDependencies": {
        "@jupyterlab/builder": "^4.0.0",
        "@types/expect.js": "^0.3.29",
        "@types/json-schema": "^7.0.11",
        "@types/node": "^18.7.8",
        "@types/react": "^18.0.26",
        "@typescript-eslint/eslint-plugin": "^6.1.0",
        "@typescript-eslint/parser": "^6.1.0",
        "css-loader": "^6.7.1",
        "eslint": "^8.36.0",
        "eslint-config-prettier": "^8.8.0",
        "eslint-plugin-jsdoc": "^39.3.6",
        "eslint-plugin-prettier": "^5.0.0",
        "eslint-plugin-react": "^7.30.1",
        "expect.js": "^0.3.1",
        "fs-extra": "^10.1.0",
        "husky": "^8.0.1",
        "lint-staged": "^13.0.3",
        "mkdirp": "^1.0.4",
        "npm-run-all": "^4.1.5",
        "prettier": "^3.0.0",
        "rimraf": "^5.0.1",
        "source-map-loader": "^1.0.2",
        "style-loader": "^3.3.1",
        "stylelint": "^15.10.1",
        "stylelint-config-recommended": "^13.0.0",
        "stylelint-config-standard": "^34.0.0",
        "stylelint-prettier": "^4.0.0",
        "typescript": "~5.0.2",
        "yjs": "^13.5.40"
    },
    "jupyterlab": {
        "extension": "lib/plugin",
        "outputDir": "ipylab/labextension",
        "sharedPackages": {
            "@jupyter-widgets/base": {
                "bundled": false,
                "singleton": true
            }
        }
    },
    "eslintConfig": {
        "extends": [
            "eslint:recommended",
            "plugin:@typescript-eslint/eslint-recommended",
            "plugin:@typescript-eslint/recommended",
            "plugin:prettier/recommended"
        ],
        "parser": "@typescript-eslint/parser",
        "parserOptions": {
            "project": "tsconfig.json",
            "sourceType": "module"
        },
        "plugins": [
            "@typescript-eslint"
        ],
        "rules": {
            "@typescript-eslint/naming-convention": [
                "error",
                {
                    "selector": "interface",
                    "format": [
                        "PascalCase"
                    ],
                    "custom": {
                        "regex": "^I[A-Z]",
                        "match": true
                    }
                }
            ],
            "@typescript-eslint/no-unused-vars": [
                "warn",
                {
                    "args": "none"
                }
            ],
            "@typescript-eslint/no-explicit-any": "off",
            "@typescript-eslint/no-namespace": "off",
            "@typescript-eslint/no-use-before-define": "off",
            "@typescript-eslint/quotes": [
                "error",
                "single",
                {
                    "avoidEscape": true,
                    "allowTemplateLiterals": false
                }
            ],
            "curly": [
                "error",
                "all"
            ],
            "eqeqeq": "error",
            "prefer-arrow-callback": "error"
        }
    },
    "eslintIgnore": [
        "node_modules",
        "dist",
        "coverage",
        "**/*.d.ts"
    ],
    "prettier": {
        "singleQuote": true,
        "trailingComma": "none",
        "arrowParens": "avoid",
        "endOfLine": "auto",
        "overrides": [
            {
                "files": "package.json",
                "options": {
                    "tabWidth": 4
                }
            }
        ]
    },
    "stylelint": {
        "extends": [
            "stylelint-config-recommended",
            "stylelint-config-standard",
            "stylelint-prettier/recommended"
        ],
        "rules": {
            "property-no-vendor-prefix": null,
            "selector-no-vendor-prefix": null,
            "value-no-vendor-prefix": null,
            "selector-class-pattern": null
        }
    }
}
