{
  "name": "candygraph",
  "version": "0.10.0",
  "description": "Fast by default, flexible 2D plotting library.",
  "main": "./dist/index.js",
  "module": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "keywords": [
    "2d",
    "plot",
    "graph",
    "chart",
    "webgl",
    "regl"
  ],
  "author": "Rye Terrell <ryeterrell@ryeterrell.net> (https://wwwtyro.net)",
  "contributors": [
    "Fritz Lekschas (https://lekschas.de)"
  ],
  "license": "Unlicense",
  "scripts": {
    "build": "npm run clean && npm run build-library && npm run build-tutorial && npm run build-examples && npm run build-apidocs",
    "build-library": "tsc -p tsconfig.json && webpack",
    "build-tutorial": "webpack --config docs/tutorial/webpack.config.js",
    "build-examples": "webpack --config docs/examples/webpack.config.js",
    "start-tutorial": "webpack-dev-server --config docs/tutorial/webpack.config.js",
    "start-examples": "webpack-dev-server --config docs/examples/webpack.config.js",
    "build-apidocs": "typedoc src/index.ts --readme none --excludeInternal --cleanOutputDir --out docs/api",
    "start-apidocs": "typedoc src/index.ts --readme none --excludeInternal --cleanOutputDir --out docs/api --watch",
    "serve-apidocs": "http-server docs/api -c-1 -p 8082",
    "clean": "rm -rf lib",
    "lint": "eslint './src/**/*.ts' './docs/examples/src/**/*.ts' './docs/tutorial/src/**/*.ts'",
    "start": "concurrently -k 'npm run watch' 'npm run start-tutorial' 'npm run start-examples' 'npm run start-apidocs' 'npm run serve-apidocs'",
    "watch": "webpack --watch"
  },
  "dependencies": {
    "gl-matrix": "^3.4.3",
    "regl": "^2.1.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wwwtyro/candygraph.git"
  },
  "devDependencies": {
    "@types/node": "^18.0.3",
    "@typescript-eslint/eslint-plugin": "^5.30.6",
    "@typescript-eslint/parser": "^5.30.6",
    "concurrently": "^7.2.2",
    "eslint": "^8.19.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "http-server": "^14.1.1",
    "markdown-it": "^13.0.1",
    "prettier": "^2.7.1",
    "ts-loader": "^9.3.1",
    "typedoc": "^0.23.7",
    "typescript": "^4.7.4",
    "url-loader": "^4.1.1",
    "webpack": "^5.73.0",
    "webpack-cli": "^4.10.0",
    "webpack-dev-server": "^4.9.3"
  }
}
