{
  "name": "ipycanvas",
  "version": "0.14.3",
  "description": "Interactive widgets library exposing the browser's Canvas API",
  "keywords": [
    "jupyter",
    "jupyterlab",
    "jupyterlab-extension",
    "widgets"
  ],
  "files": [
    "lib/**/*.js",
    "lib/**/*.d.ts",
    "dist/*.js",
    "dist/*.d.ts",
    "dist/*.map",
    "dist/*.LICENSE.txt"
  ],
  "homepage": "https://github.com/jupyter-widgets-contrib/ipycanvas",
  "bugs": {
    "url": "https://github.com/jupyter-widgets-contrib/ipycanvas/issues"
  },
  "license": "BSD-3-Clause",
  "author": {
    "name": "Martin Renou",
    "email": "martin.renou@gmail.com"
  },
  "main": "lib/index.js",
  "types": "./lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/jupyter-widgets-contrib/ipycanvas"
  },
  "scripts": {
    "build": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension",
    "build:lib": "tsc",
    "build:nbextension": "webpack --no-devtool",
    "build:labextension": "jupyter labextension build .",
    "build:extensions": "yarn run build && yarn run build:labextension",
    "clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
    "clean:lib": "rimraf lib",
    "clean:nbextension": "rimraf ipycanvas/nbextension/static/index.js",
    "clean:labextension": "rimraf ipycanvas/labextension",
    "lint": "yarn prettier && yarn eslint",
    "lint:check": "yarn prettier:check && yarn eslint:check",
    "prettier": "yarn prettier:base --write --list-different",
    "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
    "prettier:check": "yarn prettier:base --check",
    "watch:lib": "tsc -w",
    "watch:nbextension": "webpack --watch"
  },
  "dependencies": {
    "@jupyter-widgets/base": "^2.0.1 || ^3 || ^4 || ^5 || ^6",
    "@lumino/application": "^1.6.0 || ^2",
    "@lumino/widgets": "^1.6.0 || ^2",
    "buffer": "^4.9.2",
    "lodash": ">=4.17.13",
    "roughjs": "^4.3.1"
  },
  "devDependencies": {
    "@jupyterlab/builder": "^3 || ^4",
    "@types/node": "^10.11.6",
    "@types/webpack-env": "^1.13.6",
    "@typescript-eslint/eslint-plugin": "^4.8.1",
    "@typescript-eslint/parser": "^4.8.1",
    "acorn": "^6.2.0",
    "eslint": "^7.3.1",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.4",
    "expect.js": "^0.3.1",
    "fs-extra": "^7.0.0",
    "mkdirp": "^0.5.1",
    "prettier": "^2.0.5",
    "rimraf": "^2.6.2",
    "source-map-loader": "^0.2.4",
    "ts-loader": "^5.2.1",
    "typescript": "^5",
    "webpack": "^5",
    "webpack-cli": "^4"
  },
  "jupyterlab": {
    "extension": "lib/plugin",
    "webpackConfig": "webpack.lab.config.js",
    "outputDir": "ipycanvas/labextension",
    "sharedPackages": {
      "@jupyter-widgets/base": {
        "bundled": false,
        "singleton": true
      }
    }
  }
}
