UNPKG

esbuild-plugin-tailwindcss

Version:
56 lines (55 loc) 1.3 kB
{ "name": "esbuild-plugin-tailwindcss", "version": "2.2.0", "description": "Esbuild plugin for TailwindCSS", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "type": "module", "private": false, "author": "ttempaa <ttempaa.mt@gmail.com>", "license": "MIT", "homepage": "https://github.com/ttempaa/esbuild-plugin-tailwindcss", "repository": { "type": "git", "url": "https://github.com/ttempaa/esbuild-plugin-tailwindcss.git" }, "keywords": [ "tailwindcss", "esbuild", "esbuild-plugin", "bun", "bun-plugin", "plugin" ], "files": ["dist", "readme.md"], "scripts": { "build": "tsup", "lint": "biome check ./source", "lint:fix": "biome check --write ./source", "prepublishOnly": "bun run typecheck && bun run build", "test": "bun test", "typecheck": "tsc --noEmit" }, "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "import": "./dist/index.js", "default": "./dist/index.js" } }, "dependencies": { "@tailwindcss/postcss": "^4.2.1", "autoprefixer": "^10.4.27", "postcss": "^8.5.6", "postcss-modules": "^6.0.1" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@types/bun": "latest", "esbuild": "^0.25.12", "tsup": "^8.5.1", "typescript": "^5.9.3" } }