{
  "name": "@jupyter-notebook/lab-extension",
  "version": "7.0.6",
  "description": "Jupyter Notebook - Lab Extension",
  "homepage": "https://github.com/jupyter/notebook",
  "bugs": {
    "url": "https://github.com/jupyter/notebook/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jupyter/notebook.git"
  },
  "license": "BSD-3-Clause",
  "author": "Project Jupyter",
  "sideEffects": [
    "style/**/*.css",
    "style/index.js"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "style": "style/index.css",
  "directories": {
    "lib": "lib/"
  },
  "files": [
    "lib/*.d.ts",
    "lib/*.js.map",
    "lib/*.js",
    "schema/*.json",
    "style/index.js"
  ],
  "scripts": {
    "build": "jlpm run build:labextension:dev",
    "build:labextension": "jupyter labextension build .",
    "build:labextension:dev": "jupyter labextension build --development True .",
    "build:lib": "tsc -b",
    "build:prod": "jlpm run build:labextension",
    "clean": "jlpm run clean:lib && jlpm run clean:labextension",
    "clean:labextension": "rimraf ../../notebook/labextension",
    "clean:lib": "rimraf lib tsconfig.tsbuildinfo",
    "watch": "run-p watch:src watch:labextension",
    "watch:labextension": "jupyter labextension watch .",
    "watch:src": "tsc -w"
  },
  "dependencies": {
    "@jupyter-notebook/application": "^7.0.6",
    "@jupyterlab/application": "^4.0.7",
    "@jupyterlab/apputils": "^4.1.7",
    "@jupyterlab/coreutils": "^6.0.7",
    "@jupyterlab/docregistry": "^4.0.7",
    "@jupyterlab/notebook": "^4.0.7",
    "@jupyterlab/translation": "^4.0.7",
    "@jupyterlab/ui-components": "^4.0.7",
    "@lumino/commands": "^2.1.3",
    "@lumino/disposable": "^2.1.2"
  },
  "devDependencies": {
    "@jupyterlab/builder": "^4.0.7",
    "rimraf": "^3.0.2",
    "typescript": "~5.0.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "jupyterlab": {
    "extension": true,
    "outputDir": "../../notebook/labextension",
    "schemaDir": "schema",
    "_build": {
      "load": "static/remoteEntry.b2792fe643cae74ea824.js",
      "extension": "./extension",
      "style": "./style"
    }
  },
  "nx": {
    "targets": {
      "build:labextension:dev": {
        "dependsOn": [
          "^build:lib",
          "build:lib"
        ],
        "outputs": [
          "{workspaceRoot}/notebook/labextension",
          "{workspaceRoot}/notebook/labextension/build_log.json"
        ]
      },
      "build:labextension": {
        "dependsOn": [
          "^build:lib",
          "build:lib"
        ],
        "outputs": [
          "{workspaceRoot}/notebook/labextension"
        ]
      },
      "build": {
        "dependsOn": [
          "build:labextension:dev"
        ]
      },
      "build:prod": {
        "dependsOn": [
          "build:labextension"
        ]
      }
    }
  },
  "styleModule": "style/index.js"
}
