{
  "name": "astro-show-tailwindcss-breakpoint",
  "version": "2.0.0",
  "description": "Show the current Tailwind CSS breakpoint in the Astro dev toolbar!",
  "homepage": "https://github.com/jonasgeiler/astro-show-tailwindcss-breakpoint#readme",
  "bugs": "https://github.com/jonasgeiler/astro-show-tailwindcss-breakpoint/issues",
  "license": "MIT",
  "author": "Jonas Geiler <npm@jonasgeiler.com> (https://jonasgeiler.com)",
  "funding": "https://github.com/sponsors/jonasgeiler",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jonasgeiler/astro-show-tailwindcss-breakpoint.git"
  },
  "engines": {
    "node": "18.20.8 || ^20.3.0 || >=22.0.0"
  },
  "peerDependencies": {
    "astro": "^6.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.8",
    "@types/node": "25.5.0",
    "astro": "6.0.7",
    "typescript": "5.9.3"
  },
  "type": "module",
  "files": [
    "src",
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./app": {
      "types": "./dist/app.d.ts",
      "default": "./dist/app.js"
    },
    "./package.json": "./package.json"
  },
  "keywords": [
    "astro",
    "astro-integration",
    "css",
    "dev-overlay",
    "dev-toolbar",
    "devtools",
    "tailwind",
    "tailwindcss",
    "ui",
    "withastro"
  ],
  "scripts": {
    "dev": "pnpm run build --watch",
    "check": "biome check",
    "fix": "biome check --fix",
    "unsafe-fix": "biome check --unsafe --fix",
    "prebuild": "node --eval='require(`fs`).rmSync(`dist`,{recursive:true,force:true})'",
    "build": "tsc",
    "version": "node --eval='const f=`jsr.json`,v=process.env.npm_package_version,s=require(`fs`);s.writeFileSync(f,JSON.stringify({...JSON.parse(s.readFileSync(f,`utf8`)),version:v},null,2)+`\\n`);console.log(`Updated ${f} for v${v}`)' && git add jsr.json"
  }
}