{
  "name": "mathbox",
  "version": "2.3.2-rc1",
  "description": "Presentation-quality WebGL math graphing",
  "repository": {
    "type": "git",
    "url": "https://github.com/unconed/mathbox"
  },
  "module": "./build/esm/index.js",
  "exports": {
    ".": {
      "types": "./build/esm/types.d.ts",
      "import": "./build/esm/index.js"
    },
    "./mathbox.css": {
      "import": "./build/mathbox.css"
    }
  },
  "main": "./build/esm/index.js",
  "types": "./build/esm/types.d.ts",
  "files": [
    "src",
    "build",
    "*.md",
    "FUNDING.yml"
  ],
  "scripts": {
    "gh-pages": "gh-pages -d examples",
    "typedoc": "npx typedoc --options ./config/typedoc.json",
    "build:bundle": "webpack --config config/webpack.config.js",
    "build:module": "tsc",
    "build": "rm -rf build && concurrently 'npm run build:bundle' 'npm run build:module' 'gulp css'",
    "docs": "npx webpack --config config/webpack.config.docs.js && node build_docs/generate.js > docs/primitives.md",
    "format": "prettier src --check",
    "lint": "eslint \"src/**/*.{ts,js}\" --max-warnings=0",
    "autofix": "npm run format -- --write && npm run lint -- --fix",
    "test": "webpack --config config/webpack.config.testing.js && karma start --single-run --browsers=ChromeHeadless",
    "test:watch": "concurrently 'webpack --watch --config config/webpack.config.testing.js' 'karma start'",
    "prepack": "npm run build"
  },
  "prettier": {},
  "dependencies": {
    "css-select": "^4.2.1",
    "lodash": "^4.17.21",
    "shadergraph": "^2.1.3",
    "threestrap": "^0.5.1"
  },
  "peerDependencies": {
    "three": ">=0.118.0"
  },
  "devDependencies": {
    "@types/jasmine": "^3.10.3",
    "@types/three": "^0.139.0",
    "@typescript-eslint/eslint-plugin": "^5.14.0",
    "@typescript-eslint/parser": "^5.14.0",
    "concurrently": "^7.0.0",
    "eslint": "^7.28.0",
    "eslint-plugin-jasmine": "^4.1.2",
    "gh-pages": "^3.2.3",
    "gulp": "^4.0.2",
    "gulp-concat": "^2.6.1",
    "jasmine-core": "^3.7.1",
    "karma": "^6.3.3",
    "karma-chrome-launcher": "^3.1.0",
    "karma-jasmine": "^4.0.1",
    "prettier": "2.3.1",
    "three": "^0.139.2",
    "ts-loader": "^9.2.8",
    "typedoc": "^0.23.23",
    "typescript": "^4.6.2",
    "webpack": "^5.38.1",
    "webpack-cli": "^4.9.2"
  },
  "author": "Steven Wittens",
  "license": "MIT",
  "keywords": [
    "mathbox",
    "threejs",
    "visualizations",
    "mathematics",
    "webgl"
  ]
}
