{
  "name": "@three.ez/main",
  "version": "0.5.12",
  "description": "Simplify three.js development, including events, drag & drop, binding, focus management, smart rendering, tweening and more.",
  "author": "Andrea Gargaro <devgargaro@gmail.com>",
  "license": "MIT",
  "type": "module",
  "module": "build/index.js",
  "main": "build/index.cjs",
  "types": "src/index.d.ts",
  "homepage": "https://agargaro.github.io/three.ez",
  "repository": "https://github.com/agargaro/three.ez",
  "exports": {
    ".": {
      "import": {
        "types": "./src/index.d.ts",
        "default": "./build/index.js"
      },
      "require": {
        "types": "./src/index.d.ts",
        "default": "./build/index.cjs"
      }
    }
  },
  "keywords": [
    "three",
    "three.js",
    "threejs",
    "3d",
    "interaction",
    "events",
    "event system",
    "drag and drop",
    "smart rendering",
    "multiple views",
    "tween",
    "focus management",
    "binding",
    "helper",
    "toolkit",
    "query"
  ],
  "scripts": {
    "start": "vite",
    "build": "vite build && tsc --build tsconfig.build.json",
    "lint": "npx eslint --fix",
    "test": "vitest",
    "publish-patch": "npm version patch --git-tag-version false && npm run build && cd dist && npm publish --access public",
    "publish-minor": "npm version minor --git-tag-version false && npm run build && cd dist && npm publish --access public",
    "publish-major": "npm version major --git-tag-version false && npm run build && cd dist && npm publish --access public"
  },
  "devDependencies": {
    "@eslint/js": "^9.26.0",
    "@stylistic/eslint-plugin": "^4.2.0",
    "@types/three": "^0.176.0",
    "eslint": "^9.26.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.32.1",
    "vite": "^6.3.5",
    "vite-plugin-externalize-deps": "^0.9.0",
    "vite-plugin-static-copy": "^3.0.0",
    "vitest": "^3.1.3"
  },
  "peerDependencies": {
    "three": ">=0.151.0"
  },
  "dependencies": {
    "@three.ez/asset-manager": "^0.0.1"
  }
}
