{
  "name": "@pixiv/three-vrm-animation",
  "version": "3.3.0",
  "description": "The implementation of VRM Animation",
  "license": "MIT",
  "author": "pixiv",
  "files": [
    "/lib/",
    "/types/",
    "LICENSE"
  ],
  "type": "module",
  "main": "lib/three-vrm-animation.module.js",
  "types": "types/index.d.ts",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "import": "./lib/three-vrm-animation.module.js",
      "require": "./lib/three-vrm-animation.cjs"
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/pixiv/three-vrm.git",
    "directory": "packages/three-vrm-animation"
  },
  "scripts": {
    "version": "yarn all",
    "all": "yarn lint && yarn clean && yarn build && yarn docs",
    "dev": "cross-env SERVE=1 yarn build-dev",
    "clean": "rimraf docs/ lib/ types/",
    "build": "yarn build-dev && yarn build-prod && yarn build-types",
    "build-js": "node ../../bin/build.mjs",
    "build-dev": "cross-env NODE_ENV=development yarn build-js",
    "build-prod": "cross-env NODE_ENV=production yarn build-js",
    "build-types": "tsc --declaration --declarationDir ./types --emitDeclarationOnly",
    "docs": "typedoc --entryPoints ./src/index.ts --out docs",
    "lint": "eslint \"src/**/*.{ts,tsx}\"  && yarn lint-examples &&  prettier \"src/**/*.{ts,tsx}\" --check",
    "lint-examples": "eslint \"examples/**/*.{ts,tsx,js,html}\" --rule \"padded-blocks: error\"",
    "lint-fix": "eslint \"src/**/*.{ts,tsx}\" --fix && eslint \"examples/**/*.{ts,tsx,js,html}\" --fix &&  prettier \"src/**/*.{ts,tsx}\" --write"
  },
  "lint-staged": {
    "./src/**/*.{ts,tsx}": [
      "eslint --fix",
      "prettier --write"
    ]
  },
  "dependencies": {
    "@pixiv/three-vrm-core": "3.3.0",
    "@pixiv/types-vrmc-vrm-1.0": "3.3.0",
    "@pixiv/types-vrmc-vrm-animation-1.0": "3.3.0"
  },
  "devDependencies": {
    "@types/three": "^0.169.0",
    "lint-staged": "15.2.10",
    "three": "^0.169.0"
  },
  "peerDependencies": {
    "three": ">=0.137"
  },
  "gitHead": "5d7116ab3ac4e229d900b6abefbfa6c3959a436d"
}
