esbuild-plugin-tailwindcss
Version:
Esbuild plugin for TailwindCSS
55 lines (54 loc) • 1.28 kB
JSON
{
"name": "esbuild-plugin-tailwindcss",
"version": "2.0.1",
"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",
"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.0.5",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.1",
"postcss-modules": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"esbuild": "^0.25.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}