{
  "name": "@datalayer/jupyter-viewer",
  "version": "1.0.1",
  "description": "🪐 👀 Jupyter Viewer.",
  "keywords": [
    "jupyter",
    "jupyterlab",
    "jupyterlab-extension",
    "nbviewer",
    "viewer",
    "datalayer"
  ],
  "homepage": "https://github.com/datalayer/jupyter-viewer",
  "bugs": {
    "url": "https://github.com/datalayer/jupyter-viewer/issues"
  },
  "license": "BSD-3-Clause",
  "author": {
    "name": "Datalayer",
    "email": "info@datalayer.io"
  },
  "files": [
    "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
    "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
    "schema/*.json"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "style": "style/index.css",
  "repository": {
    "type": "git",
    "url": "https://github.com/datalayer/jupyter-viewer.git"
  },
  "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",
    "build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",
    "build:webpack": "webpack-cli build",
    "build:webpack:prod": "cross-env IS_WEBPACK_PROD=true webpack-cli build",
    "clean": "jlpm clean:lib",
    "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
    "clean:labextension": "rimraf jupyter_viewer/labextension",
    "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",
    "jupyterlab": "run-p -c 'jupyterlab:*'",
    "jupyterlab:server": "jupyter server --config=./dev/config/jupyter_server_config.py",
    "jupyterlab:webpack": "webpack serve",
    "kill": "./dev/sh/kill.sh || true",
    "lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
    "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
    "prettier": "jlpm prettier:base --write --list-different",
    "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
    "prettier:check": "jlpm prettier:base --check",
    "start": "run-p -c 'start:*'",
    "start:jupyter-server": "cd ./dev/sh && ./start-jupyter-server.sh",
    "start:webpack": "webpack serve",
    "stylelint": "jlpm stylelint:check --fix",
    "stylelint:check": "stylelint --cache \"style/**/*.css\"",
    "test": "jest --coverage",
    "typedoc": "typedoc ./src",
    "watch": "run-p watch:src watch:labextension",
    "watch:labextension": "jupyter labextension watch .",
    "watch:src": "tsc -w"
  },
  "dependencies": {
    "@datalayer/icons-react": "^1.0.0",
    "@datalayer/jupyter-react": "^1.0.1",
    "@datalayer/primer-addons": "^1.0.0",
    "@jupyterlab/application": "^4.0.0",
    "@jupyterlab/coreutils": "^6.0.0",
    "@jupyterlab/services": "^7.0.0",
    "@jupyterlab/settingregistry": "^4.0.0",
    "react": "18.3.1",
    "react-dom": "18.3.1",
    "react-is": "^18.2.0",
    "react-layout-masonry": "^1.1.0",
    "react-router-dom": "^6.22.3",
    "styled-components": "^5.3.10",
    "zustand": "^4.4.1"
  },
  "devDependencies": {
    "@babel/core": "^7.21.0",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/preset-env": "^7.20.2",
    "@babel/preset-react": "^7.18.6",
    "@babel/preset-typescript": "^7.21.0",
    "@jupyterlab/builder": "^4.0.0",
    "@jupyterlab/launcher": "^4.0.0",
    "@jupyterlab/testutils": "^4.0.0",
    "@types/jest": "^29.4.0",
    "@types/node": "^22.14.1",
    "@types/react": "18.3.20",
    "@types/react-dom": "18.3.6",
    "@types/styled-components": "^5.1.34",
    "@types/webpack-env": "^1.18.2",
    "@typescript-eslint/eslint-plugin": "^8.29.1",
    "@typescript-eslint/parser": "^8.29.1",
    "babel-loader": "^9.1.2",
    "cross-env": "^7.0.3",
    "css-loader": "^6.9.1",
    "eslint": "^9.0.0",
    "eslint-config-prettier": "^10.1.2",
    "eslint-plugin-prettier": "^5.2.6",
    "html-webpack-plugin": "^5.3.1",
    "jest": "^29.4.3",
    "jest-playwright-preset": "^3.0.1",
    "mkdirp": "^1.0.3",
    "npm-run-all": "^4.1.5",
    "playwright": "^1.31.1",
    "prettier": "^3.3.2",
    "raw-loader": "^4.0.2",
    "rimraf": "^6.0.1",
    "stream": "^0.0.2",
    "stream-browserify": "^2.0.2",
    "style-loader": "^2.0.0",
    "stylelint": "^14.3.0",
    "stylelint-config-prettier": "^9.0.4",
    "stylelint-config-recommended": "^6.0.0",
    "stylelint-config-standard": "^24.0.0",
    "stylelint-prettier": "^2.0.0",
    "svg-url-loader": "^7.1.1",
    "ts-jest": "^29.0.5",
    "typescript": "^5.8.3",
    "webpack": "^5.74.0",
    "webpack-bundle-analyzer": "^4.5.0",
    "webpack-cli": "^4.10.0",
    "webpack-dev-server": "^4.9.3"
  },
  "sideEffects": [
    "style/*.css",
    "style/index.js"
  ],
  "styleModule": "style/index.js",
  "publishConfig": {
    "access": "public"
  },
  "jupyterlab": {
    "discovery": {
      "server": {
        "managers": [
          "pip"
        ],
        "base": {
          "name": "jupyter-viewer"
        }
      }
    },
    "extension": "lib/jupyterlab/index.js",
    "outputDir": "jupyter_viewer/labextension",
    "schemaDir": "schema",
    "webpackConfig": "./webpack.lab-config.js"
  },
  "jupyter-releaser": {
    "hooks": {
      "before-build-npm": [
        "python -m pip install jupyterlab==4.1.0",
        "jlpm"
      ],
      "before-build-python": [
        "jlpm clean:all"
      ]
    }
  }
}
