{
  "name": "@pixi/ui",
  "version": "2.3.2",
  "description": "It is a library that contains commonly used UI components, that are extensible to allow them to be used in any project",
  "homepage": "https://github.com/pixijs/ui",
  "bugs": "https://github.com/pixijs/ui/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pixijs/ui.git"
  },
  "license": "MIT",
  "author": "PixiJS Team",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.mjs",
      "require": "./lib/index.js"
    }
  },
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "types": "lib/index.d.ts",
  "files": [
    "lib/",
    "dist/"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,js,mjs}": [
      "npm run lint:fix --",
      "npm run types"
    ],
    "src/*.{ts,js,mjs}": [
      "npm run test"
    ],
    "tests/components/*.test.ts": [
      "npm run test"
    ]
  },
  "peerDependencies": {
    "pixi.js": "^8.6.2"
  },
  "dependencies": {
    "tweedle.js": "^2.1.0",
    "typed-signals": "^2.5.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
