{
  "name": "behave-graph",
  "version": "0.9.10",
  "description": "Simple, extensible behavior graph engine",
  "type": "module",
  "main": "dist/lib",
  "types": "dist/lib/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "keywords": [
    "behavior",
    "graph",
    "flow"
  ],
  "homepage": "http://github.com/bhouston/behave-graph",
  "author": "behave-graph authors",
  "bugs": {
    "url": "https://github.com/bhouston/behave-graph/issues"
  },
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/bhouston/behave-graph"
  },
  "devDependencies": {
    "@types/glob": "^8.0.0",
    "@types/jest": "^29.1.1",
    "@types/node": "^18.0.6",
    "@types/offscreencanvas": "^2019.7.0",
    "@types/three": "^0.144.0",
    "@typescript-eslint/eslint-plugin": "^5.38.1",
    "@web/dev-server": "^0.1.34",
    "commander": "^9.4.1",
    "csv-stringify": "^6.2.0",
    "eslint": "^8.24.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "^6.0.1",
    "eslint-plugin-simple-import-sort": "^8.0.0",
    "eslint-plugin-unicorn": "^44.0.0",
    "eslint-plugin-unused-imports": "^2.0.0",
    "glob": "^8.0.3",
    "jest": "^29.1.2",
    "prettier": "^2.7.1",
    "three": "^0.145.0",
    "threeify": "^2.0.2",
    "ts-jest": "^29.0.3",
    "ts-jest-resolver": "^2.0.0",
    "ts-node": "^10.9.1",
    "typedoc": "^0.23.15",
    "typescript": "^4.7.3"
  },
  "scripts": {
    "build": "tsc",
    "start": "npm run watch & web-dev-server --watch --open --app-index ./src/examples/three/index.html",
    "lint": "npx eslint \"src/**/*.{ts,json}\"",
    "lint:fix": "npm run lint -- --fix",
    "prettier": "npx prettier \"src/**/*.{ts,json}\" --check",
    "prettier:fix": "npm run prettier -- --write",
    "format": "npm run prettier:fix && npm run lint:fix",
    "docs": "typedoc",
    "test": "jest ./src",
    "prepare": "npm run build && npm run export-node-spec dist/node-spec.json",
    "exec-graph": "npm run build && node --enable-source-maps ./dist/examples/exec-graph/index.js",
    "export-node-spec": "npm run build && node --enable-source-maps ./dist/examples/export-node-spec/index.js"
  }
}
