mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
34 lines
969 B
JSON
34 lines
969 B
JSON
{
|
|
"name": "@tailwindcss/postcss",
|
|
"version": "4.0.0-alpha.6",
|
|
"description": "PostCSS plugin for Tailwind CSS, a utility-first CSS framework for rapidly building custom user interfaces",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/tailwindlabs/tailwindcss.git",
|
|
"bugs": "https://github.com/tailwindlabs/tailwindcss/issues",
|
|
"homepage": "https://tailwindcss.com",
|
|
"scripts": {
|
|
"lint": "tsc --noEmit",
|
|
"build": "tsup-node ./src/index.ts --format cjs --dts --cjsInterop --splitting --minify --clean",
|
|
"dev": "pnpm run build -- --watch"
|
|
},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/oxide": "workspace:^",
|
|
"postcss-import": "^16.0.0",
|
|
"tailwindcss": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.17",
|
|
"@types/postcss-import": "^14.0.3",
|
|
"postcss": "8.4.24"
|
|
}
|
|
}
|