{
  "name": "@egoist/tailwindcss-icons",
  "version": "1.9.2",
  "description": "Icons utility for TailwindCSS",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hyoban/tailwindcss-icons.git"
  },
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@ianvs/prettier-plugin-sort-imports": "^4.7.0",
    "@iconify-json/heroicons": "^1.2.3",
    "@iconify/json": "^2.2.433",
    "@iconify/types": "^2.0.0",
    "@types/node": "^25.1.0",
    "eslint": "^9.39.2",
    "postcss": "^8.5.6",
    "prettier": "^3.8.1",
    "prettier-plugin-tailwindcss": "^0.7.2",
    "tailwindcss": "^3.4.19",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.54.0",
    "vitest": "^4.0.18"
  },
  "dependencies": {
    "@iconify/utils": "^3.1.0"
  },
  "peerDependencies": {
    "tailwindcss": "*"
  },
  "scripts": {
    "gen-types": "node ./gen-types.mjs",
    "build-fast": "pnpm gen-types && tsup src/index.ts --format cjs,esm",
    "build": "pnpm run build-fast --dts-resolve",
    "test": "vitest run",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint --max-warnings 0 .",
    "typecheck": "tsc --noEmit"
  }
}