{
  "name": "@yoot/imgix",
  "type": "module",
  "version": "0.3.5",
  "description": "Imgix adapter for @yoot/yoot",
  "keywords": [
    "imgix",
    "yoot",
    "yoot-adapter",
    "image",
    "images",
    "cdn",
    "responsive",
    "optimization",
    "transform",
    "transformation",
    "url",
    "url-builder",
    "img",
    "picture",
    "srcset",
    "typescript"
  ],
  "author": "Tom Theisel <tom.theisel@gmail.com>",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/theisel/yoot.git",
    "directory": "packages/adapters/imgix"
  },
  "bugs": {
    "url": "https://github.com/theisel/yoot/issues"
  },
  "homepage": "https://github.com/theisel/yoot#readme",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./register": {
      "types": "./dist/register.d.ts",
      "import": "./dist/register.js"
    },
    "./core": null
  },
  "files": [
    "dist/core/**/*{.js,.d.ts}",
    "dist/{index,register}{.js,.d.ts}",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "@yoot/yoot": "0.5.1"
  },
  "devDependencies": {
    "@yoot/test-kit": "0.0.0"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "api:docs": "npx api-documenter markdown -i temp -o ../../../docs/packages/adapters/imgix",
    "api:build": "npx api-extractor run --verbose --local",
    "build": "pnpm vite:build && pnpm ts:build && pnpm api:build && pnpm api:docs && pnpm cp:resources",
    "clean": "rm -rf dist",
    "cp:resources": "cp ../../../LICENSE .",
    "test": "pnpm test:node && pnpm test:smoke",
    "test:bun": "TEST_SUITE=smoke pnpm bun test ./tests/bun",
    "test:cloudflare": "TEST_SUITE=smoke vitest run ./tests/cloudflare",
    "test:deno": "TEST_SUITE=smoke deno test --config deno.test.json ./tests/deno",
    "test:node": "vitest run",
    "test:smoke": "pnpm test:bun && pnpm test:cloudflare && pnpm test:deno",
    "ts:build": "tsc -p tsconfig.build.json",
    "vite:build": "vite build"
  }
}