{
  "name": "@mattzh72/lodestone",
  "version": "0.6.0",
  "description": "Rendering and core utilities for programmatic Minecraft scenes (Three.js + WebGL)",
  "keywords": [
    "minecraft",
    "three",
    "threejs",
    "webgl",
    "renderer"
  ],
  "author": "Matthew Zhou",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mattzh72/lodestone.git"
  },
  "homepage": "https://github.com/mattzh72/lodestone",
  "bugs": {
    "url": "https://github.com/mattzh72/lodestone/issues"
  },
  "type": "module",
  "main": "./lib/index.js",
  "module": "./lib/index.js",
  "unpkg": "./dist/lodestone.umd.cjs",
  "types": "./lib/index.d.ts",
  "files": [
    "lib/**",
    "dist/**",
    "assets/**",
    "LICENSE",
    "README.md",
    "!**/*.tsbuildinfo"
  ],
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    },
    "./core": {
      "types": "./lib/core/main.d.ts",
      "default": "./lib/core/main.js"
    },
    "./math": {
      "types": "./lib/math/main.d.ts",
      "default": "./lib/math/main.js"
    },
    "./nbt": {
      "types": "./lib/nbt/main.d.ts",
      "default": "./lib/nbt/main.js"
    },
    "./render": {
      "types": "./lib/render/main.d.ts",
      "default": "./lib/render/main.js"
    },
    "./util": {
      "types": "./lib/util/main.d.ts",
      "default": "./lib/util/main.js"
    }
  },
  "scripts": {
    "build": "tsc -b src --clean && tsc -b src && vite build",
    "dev": "tsc -b -w src",
    "test": "vitest -r ./test",
    "demo": "vite ./demo",
    "lint": "eslint . --ext .ts",
    "version": "bash scripts/version.sh",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "gl-matrix": "^3.3.0",
    "md5": "^2.3.0",
    "pako": "^2.0.3"
  },
  "peerDependencies": {
    "three": "^0.164.1"
  },
  "devDependencies": {
    "@types/md5": "^2.3.1",
    "@types/pako": "^1.0.1",
    "@types/three": "^0.164.0",
    "@typescript-eslint/eslint-plugin": "^5.42.1",
    "@typescript-eslint/parser": "^5.42.1",
    "eslint": "^8.27.0",
    "three": "^0.164.1",
    "typescript": "^4.8.4",
    "vite": "^7.3.1",
    "vitest": "^3.2.4"
  }
}
