{
  "name": "luxwidget",
  "version": "0.1.11",
  "description": "A Custom Jupyter Widget Library",
  "keywords": [
    "jupyter",
    "jupyterlab",
    "jupyterlab-extension",
    "widgets"
  ],
  "files": [
    "webpack.config.js",
    "tsconfig.json",
    "luxwidget/*.py",
    "luxwidget/nbextension/static/*",
    "luxwidget/labextension/static/*",
    "luxwidget/labextension/package.json",
    "*.py",
    "src/*.tsx",
    "src/*.ts",
    "lib/**/*.js",
    "lib/**/*.ts",
    "dist/*.js",
    "style/index.js",
    "style/*.css"
  ],
  "homepage": "https://github.com/lux-org/lux-widget",
  "bugs": {
    "url": "https://github.com/lux-org/lux-widget/issues"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Doris Jung-Lin Lee",
    "email": "dorisjunglinlee@gmail.com"
  },
  "main": "lib/index.js",
  "types": "./lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/lux-org/lux-widget"
  },
  "scripts": {
    "build": "jlpm run build:lib && jlpm run build:labextension:dev",
    "build:prod": "jlpm run build:lib && jlpm run build:labextension",
    "build:labextension": "jupyter labextension build .",
    "build:labextension:dev": "jupyter labextension build --development True .",
    "build:lib": "tsc",
    "clean": "jlpm run clean:lib",
    "clean:lib": "rimraf lib tsconfig.tsbuildinfo",
    "clean:labextension": "rimraf {{ cookiecutter.python_name }}/labextension",
    "clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
    "eslint": "eslint . --ext .ts,.tsx --fix",
    "eslint:check": "eslint . --ext .ts,.tsx",
    "install:extension": "jupyter labextension develop --overwrite .",
    "prepare": "jlpm run clean && jlpm run build:prod",
    "watch": "run-p watch:src watch:labextension",
    "watch:src": "tsc -w",
    "watch:labextension": "jupyter labextension watch ."
  },
  "dependencies": {
    "@jupyter-widgets/base": "^3 || ^4.0.0",
    "@material-ui/core": "^4.11.0",
    "bootstrap": "^4.4.1",
    "detect-libc": "^1.0.3",
    "jquery": "^3.4.1",
    "needle": "^2.4.0",
    "nopt": "^4.0.1",
    "rc": "^1.2.8",
    "react": "^17.0.1",
    "react-bootstrap": "^1.0.0-beta.16",
    "react-dom": "^17.0.1",
    "react-vega": "7.1.1",
    "vega": "^5.9.0",
    "vega-embed": "^6.2.1",
    "vega-lite": "^4.0.2"
  },
  "devDependencies": {
    "@babel/preset-react": "^7.7.4",
    "@jupyterlab/builder": "^3.0.0",
    "@lumino/application": "^1.13.1",
    "@lumino/widgets": "^1.16.1",
    "@types/expect.js": "^0.3.29",
    "@types/jquery": "^3.5.4",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.11.6",
    "@types/react": "^16.9.16",
    "@types/react-dom": "^16.9.4",
    "@types/webpack-env": "^1.13.6",
    "@typescript-eslint/eslint-plugin": "^4.8.1",
    "@typescript-eslint/parser": "^4.8.1",
    "css-loader": "^3.2.0",
    "eslint": "^7.14.0",
    "eslint-config-prettier": "^6.15.0",
    "eslint-plugin-prettier": "^3.1.4",
    "expect.js": "^0.3.1",
    "fs-extra": "^7.0.0",
    "mkdirp": "^0.5.1",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.1.1",
    "rimraf": "^3.0.2",
    "source-map-loader": "^0.2.4",
    "style-loader": "^1.0.0",
    "ts-loader": "^6.2.1",
    "typescript": "~4.1.3",
    "webpack": "^4.46.0",
    "webpack-cli": "^3.3.12"
  },
  "jupyterlab": {
    "extension": "lib/plugin",
    "outputDir": "luxwidget/labextension"
  },
  "presets": [
    "@babel/preset-env",
    "@babel/preset-react"
  ],
  "styleModule": "style/index.js"
}
