{
  "name": "@kodehort/prettier-config",
  "version": "3.0.3",
  "description": "A curated set of prettier configurations that we use across our projects and can be used in your projects.",
  "keywords": [
    "prettier",
    "config",
    "astro",
    "sort-imports",
    "tailwindcss"
  ],
  "homepage": "https://github.com/kodehort/prettier-config",
  "bugs": {
    "url": "https://github.com/kodehort/prettier-config/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kodehort/prettier-config.git"
  },
  "license": "MIT",
  "author": "Alistair Stead <alistair@kodehort.com> (https://kodehort.com)",
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "./dist/index.js",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
    "prettier-plugin-astro": "^0.14.1",
    "prettier-plugin-curly": "^0.2.2",
    "prettier-plugin-packagejson": "^2.5.3",
    "prettier-plugin-tailwindcss": "^0.6.8"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.16.4",
    "@changesets/cli": "^2.27.9",
    "@types/node": "^22.7.5",
    "tsup": "^8.3.0",
    "typescript": "^5.6.2"
  },
  "peerDependencies": {
    "prettier": "^3.0.0"
  },
  "packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
  "scripts": {
    "build": "tsup",
    "check-exports": "attw --pack .",
    "check-format": "prettier --config ./dist/index.js --check .",
    "ci": "pnpm run build && pnpm run check-format && pnpm run check-exports && pnpm run lint",
    "dev": "tsup --watch",
    "lint": "tsc",
    "release": "changeset publish"
  }
}