UNPKG

@awal-solution/tailwind-theming

Version:

<div align="left"> <h1>Tailwind theming</h1> <p>The <b>TailwindCSS Multi-Theming Plugin</b> is a utility for creating and managing multiple themes in your TailwindCSS-based projects. With this library, you can define, add, update, and remove themes dyn

93 lines (92 loc) 2.48 kB
{ "name": "@awal-solution/tailwind-theming", "version": "2.0.4", "type": "module", "author": { "name": "Muneeb Mughal", "email": "muneebmughal3324@gmail.com", "url": "https://github.com/Muneeb-Mughal-Dev" }, "homepage": "https://github.com/awalsolution", "repository": { "type": "git", "url": "https://github.com/awalsolution/tailwing-theming.git" }, "license": "MIT", "keywords": [ "ui", "design", "theming", "DarkMode", "frontend", "lightMode", "tailwind-css" ], "types": "dist/main.d.ts", "exports": { ".": { "types": "./dist/main.d.ts", "default": "./dist/main.js" } }, "files": [ "dist" ], "publishConfig": { "access": "public" }, "scripts": { "dev": "vite", "build": "tsc && vite build", "lint": "eslint 'src/**/*.{ts,js}'", "test": "jest --config jest.config.ts", "semantic-release": "semantic-release", "prettier:fix": "npx prettier --write ./", "prepare": "husky" }, "devDependencies": { "@commitlint/cli": "^19.6.1", "@commitlint/config-conventional": "^19.6.0", "@eslint/js": "^9.17.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.0", "@semantic-release/github": "^11.0.1", "@semantic-release/npm": "^12.0.1", "@semantic-release/release-notes-generator": "^14.0.2", "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@types/color": "^4.2.0", "@types/jest": "^29.5.14", "@types/lodash": "^4.17.13", "@types/lodash.merge": "^4.6.9", "@types/lodash.mergewith": "^4.6.9", "@types/node": "^22.10.1", "@typescript-eslint/eslint-plugin": "^8.18.1", "@typescript-eslint/parser": "^8.18.1", "eslint": "^9.17.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", "glob": "^11.0.0", "husky": "^9.1.7", "jest": "^29.7.0", "lint-staged": "^15.3.0", "prettier": "^3.4.2", "sementic-release": "^1.5.1", "tailwindcss": "^3.4.16", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "~5.6.2", "typescript-eslint": "^8.18.1", "vite": "^6.0.1", "vite-plugin-dts": "^4.3.0" }, "dependencies": { "color": "^4.2.3", "just-unique": "^4.2.0", "lodash.merge": "^4.6.2", "lodash.mergewith": "^4.6.2" }, "lint-staged": { "**/*.{js,jsx,tx,tsx}": "eslint --fix", "**/*": "prettier --write --ignore-unknown" } }