{
  "name": "@wrksz/themes",
  "version": "0.9.3",
  "description": "A modern, fully-featured theme management library for Next.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/jakubwarkusz/themes"
  },
  "license": "MIT",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "bunup",
    "dev": "bunup --watch",
    "type-check": "tsc --noEmit",
    "lint": "biome check src",
    "lint:fix": "biome check --write src",
    "format": "biome format --write src",
    "test": "bun test",
    "size": "bun run build && bun scripts/bundle-size.ts",
    "size:json": "bun run build >/dev/null && bun scripts/bundle-size.ts --json",
    "prepare": "[ \"$CI\" = \"true\" ] || lefthook install"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.13",
    "next": ">=16.0.0",
    "@testing-library/react": "^16.3.2",
    "@types/bun": "^1.3.11",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "bunup": "^0.16.31",
    "happy-dom": "^20.8.4",
    "lefthook": "^2.1.4",
    "react": "^19.2.4",
    "react-dom": "^19.2.4",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "next": ">=16.0.0",
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "typescript": ">=4.5.0"
  },
  "peerDependenciesMeta": {
    "next": {
      "optional": true
    }
  },
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./client": {
      "import": {
        "types": "./dist/client.d.ts",
        "default": "./dist/client.js"
      }
    },
    "./client/use-theme": {
      "import": {
        "types": "./dist/client/use-theme.d.ts",
        "default": "./dist/client/use-theme.js"
      }
    },
    "./client/use-theme-value": {
      "import": {
        "types": "./dist/client/use-theme-value.d.ts",
        "default": "./dist/client/use-theme-value.js"
      }
    },
    "./client/use-theme-effect": {
      "import": {
        "types": "./dist/client/use-theme-effect.d.ts",
        "default": "./dist/client/use-theme-effect.js"
      }
    },
    "./client/themed-image": {
      "import": {
        "types": "./dist/client/themed-image.d.ts",
        "default": "./dist/client/themed-image.js"
      }
    },
    "./client/provider": {
      "import": {
        "types": "./dist/client/provider.d.ts",
        "default": "./dist/client/provider.js"
      }
    },
    "./client/create-themes": {
      "import": {
        "types": "./dist/client/create-themes.d.ts",
        "default": "./dist/client/create-themes.js"
      }
    },
    "./next": {
      "import": {
        "types": "./dist/next.d.ts",
        "default": "./dist/next.js"
      }
    },
    "./package.json": "./package.json"
  },
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts"
}
