UNPKG

tailwind-tree

Version:

A utility for writing deeply nested and composable Tailwind CSS classes using an expressive tree structure, supporting responsive and interactive variants for Tailwind v3 and v4.

75 lines 2.16 kB
{ "name": "tailwind-tree", "version": "0.2.5", "description": "A utility for writing deeply nested and composable Tailwind CSS classes using an expressive tree structure, supporting responsive and interactive variants for Tailwind v3 and v4.", "author": { "name": "Shervin Ghajar", "email": "ssghajar.work@gmail.com" }, "homepage": "https://github.com/shervin-ghajar/tailwind-tree#readme", "keywords": [ "tailwindcss", "tailwind", "tailwind-merge", "style", "css", "utility-first", "responsive", "design" ], "repository": { "type": "git", "url": "https://github.com/shervin-ghajar/tailwind-tree.git" }, "license": "MIT", "publishConfig": { "access": "public" }, "type": "module", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "format": "prettier --write --cache . --plugin=prettier-plugin-organize-imports", "lint": "eslint .", "test": "cd src/example && npx tsx test.ts" }, "dependencies": {}, "devDependencies": { "@eslint/js": "^9.25.0", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.1.2", "@trivago/prettier-plugin-sort-imports": "^4.1.1", "@types/node": "^22.15.29", "eslint": "^9.25.0", "eslint-plugin-react-hooks": "^5.2.0", "eslint-plugin-react-refresh": "^0.4.19", "globals": "^16.0.0", "prettier": "^3.5.3", "prettier-plugin-organize-imports": "^4.1.0", "rollup": "^4.41.1", "rollup-plugin-delete": "^3.0.1", "rollup-plugin-dts": "^6.2.1", "rollup-plugin-visualizer": "^6.0.3", "tslib": "^2.8.1", "tsx": "^4.20.3", "typescript": "~5.8.3", "typescript-eslint": "^8.30.1" }, "files": [ "dist", "README.md", "LICENSE" ] }