{
  "name": "@aresrpg/aresrpg-world",
  "version": "2.0.8",
  "description": "Procedural voxel terrain generation for AresRPG",
  "type": "module",
  "source": "src/index.ts",
  "main": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./workerpool": {
      "browser": "./dist/processing/WorkerPool.js",
      "node": "./dist/node/NodeWorkerPool.js",
      "types": "./dist/processing/WorkerPool.d.ts"
    },
    "./worker": {
      "browser": "./dist/processing/world_compute_worker.js",
      "node": "./dist/node/world_compute_node_worker.js",
      "types": "./dist/processing/world_compute_worker.d.ts"
    }
  },
  "scripts": {
    "watch": "tsc --watch",
    "build": "tsc",
    "build:test": "tsc -p tsconfig.test.json",
    "lint": "eslint . --ext .ts && prettier . --check && npm run typecheck",
    "typecheck": "tsc --build",
    "format": "prettier . --write && eslint . --fix --ext .ts",
    "postversion": "git push --follow-tags",
    "chunks-over-ws-local-server": "tsx test/chunks_over_ws_server.js",
    "test": "node dist/test/noreg.test.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aresrpg/aresrpg-world.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [],
  "dependencies": {
    "poisson-disk-sampling": "^2.3.1",
    "simplex-noise": "^4.0.3"
  },
  "peerDependencies": {
    "three": ">=0.163.0"
  },
  "devDependencies": {
    "@parcel/packager-ts": "^2.14.4",
    "@parcel/transformer-typescript-types": "^2.14.4",
    "@types/node": "^22.14.0",
    "@types/poisson-disk-sampling": "^2.2.4",
    "@types/three": "^0.175.0",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.29.0",
    "@typescript-eslint/parser": "^8.29.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "10.1.1",
    "eslint-config-standard": "17.1.0",
    "eslint-plugin-import": "2.31.0",
    "husky": "^4.3.8",
    "lint-staged": "15.5.0",
    "prettier": "3.5.3",
    "tsx": "^4.19.3",
    "typescript": "^5.8.3",
    "ws": "^8.18.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "eslint --fix"
    ],
    "*.json": "prettier --write",
    "*.md": "prettier --write",
    "*.yml": "prettier --write"
  }
}
