{
  "name": "bench-3d",
  "version": "1.0.0",
  "description": "A reusable 3D modeling engine extracted from Blockbench",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./core": {
      "import": "./dist/core.js",
      "require": "./dist/core.cjs",
      "types": "./dist/core.d.ts"
    },
    "./full": {
      "import": "./dist/full.js",
      "require": "./dist/full.cjs",
      "types": "./dist/full.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "TYPESCRIPT.md",
    "examples"
  ],
  "scripts": {
    "build": "node build.js",
    "dev": "node build.js --watch",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "echo 'Skipping build - using existing dist folder'",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "test:coverage": "vitest --coverage"
  },
  "keywords": [
    "3d",
    "modeling",
    "geometry",
    "mesh",
    "three.js",
    "blockbench",
    "3d-engine",
    "webgl",
    "typescript"
  ],
  "author": "CharmingBlaze",
  "license": "GPL-3.0-or-later",
  "repository": {
    "type": "git",
    "url": "https://github.com/CharmingBlaze/bench-3d.git",
    "directory": "packages/bench3d"
  },
  "homepage": "https://github.com/CharmingBlaze/bench-3d#readme",
  "bugs": {
    "url": "https://github.com/CharmingBlaze/bench-3d/issues"
  },
  "peerDependencies": {
    "three": "^0.129.0"
  },
  "devDependencies": {
    "@types/three": "^0.129.2",
    "esbuild": "^0.25.8",
    "typescript": "^5.8.3",
    "vitest": "^1.0.0",
    "@vitest/coverage-v8": "^1.0.0"
  }
}

