{
  "name": "vue3-pixi",
  "type": "module",
  "version": "1.0.2",
  "description": "Vue createRenderer for PixiJS",
  "license": "MIT",
  "homepage": "https://github.com/hairyf/vue3-pixi#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hairyf/vue3-pixi.git"
  },
  "bugs": {
    "url": "https://github.com/hairyf/vue3-pixi/issues"
  },
  "keywords": [
    "pixi.js",
    "vue"
  ],
  "main": "dist/index.cjs",
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./*"
      ]
    }
  },
  "files": [
    "dist",
    "global.d.ts"
  ],
  "peerDependencies": {
    "pixi-filters": "6.1.5",
    "pixi.js": "8.14.3"
  },
  "dependencies": {
    "@antfu/utils": "^0.7.10",
    "@vueuse/core": "^10.11.1",
    "nanoid": "^4.0.2",
    "vue-demi": "^0.14.10"
  },
  "devDependencies": {
    "@vue/runtime-core": "^3.5.17"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch src"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./compiler": {
      "types": "./dist/compiler.d.ts",
      "require": "./dist/compiler.cjs",
      "import": "./dist/compiler.js"
    },
    "./global": {
      "types": "./dist/global.d.ts",
      "require": "./dist/global.cjs",
      "import": "./dist/global.js"
    },
    "./*": "./*"
  },
  "module": "dist/index.js",
  "types": "dist/index.d.ts"
}