astro-show-tailwindcss-breakpoint
Version:
Show the current Tailwind CSS breakpoint in the Astro dev toolbar!
62 lines • 1.92 kB
JSON
{
"name": "astro-show-tailwindcss-breakpoint",
"version": "1.0.9",
"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": "github:jonasgeiler/astro-show-tailwindcss-breakpoint",
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=22.0.0"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "18.19.86",
"astro": "5.6.1",
"typescript": "5.8.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": "tsc --watch",
"check": "pnpm run '/^check:.*/'",
"check:biome": "biome check",
"check:tsc": "tsc --noEmit",
"fix": "biome check --fix",
"unsafe-fix": "biome check --fix --unsafe",
"build": "tsc",
"version": "node --input-type=module --eval=\"import f from 'node:fs/promises';const j=JSON.parse(await f.readFile('jsr.json','utf8'));j.version=process.env.npm_package_version||j.version;await f.writeFile('jsr.json',JSON.stringify(j,null,2)+'\\n','utf8');console.log('Updated jsr.json for version',j.version)\" && git add jsr.json",
"prepublish": "pnpm run build"
}
}