UNPKG

@poupe/tailwindcss

Version:

TailwindCSS v4 plugin for Poupe UI framework with theme customization support

90 lines 2.15 kB
{ "name": "@poupe/tailwindcss", "version": "0.5.0", "type": "module", "description": "TailwindCSS v4 plugin for Poupe UI framework with theme customization support", "author": "Alejandro Mery <amery@apptly.co>", "license": "MIT", "homepage": "https://poupe.dev", "keywords": [ "css", "design-system", "design-tokens", "material-design", "material-design-3", "poupe", "tailwind", "tailwindcss", "theming", "typescript", "ui-framework" ], "repository": { "type": "git", "url": "git+https://github.com/poupe-ui/poupe.git", "directory": "packages/@poupe-tailwindcss" }, "bugs": { "url": "https://github.com/poupe-ui/poupe/issues" }, "exports": { ".": { "types": "./dist/index.d.ts", "style": "./dist/style.css", "import": "./dist/index.mjs" }, "./theme": { "types": "./dist/theme.d.ts", "import": "./dist/theme.mjs" }, "./utils": { "types": "./dist/utils.d.ts", "import": "./dist/utils.mjs" } }, "main": "./dist/index.mjs", "style": "./dist/style.css", "types": "./dist/index.d.ts", "devDependencies": { "@poupe/eslint-config": "^0.6.4", "@tailwindcss/node": "^4.1.10", "@types/node": "^20.19.0", "eslint": "^9.28.0", "pathe": "^2.0.3", "publint": "^0.3.12", "tailwindcss": "^4.1.10", "typescript": "^5.8.3", "unbuild": "3.5.0", "vitest": "^3.2.3", "vue-tsc": "^2.2.10" }, "dependencies": { "type-fest": "^4.41.0", "@poupe/css": "^0.3.1", "@poupe/theme-builder": "^0.10.1" }, "peerDependencies": { "tailwindcss": "^4.1.10" }, "publishConfig": { "access": "public" }, "files": [ "dist" ], "engines": { "node": ">=20.19.2", "pnpm": ">=10.10.0" }, "scripts": { "precommit": "run-s lint type-check test build", "dev:prepare": "unbuild --stub", "type-check": "tsc --noEmit", "lint": "env DEBUG=eslint:eslint eslint --fix .", "publint": "pnpx publint", "build": "unbuild", "test": "vitest run", "dev": "vitest watch", "clean": "rm -rf dist node_modules" } }