tailwindcss-palette-generator
Version:
Color palette generation library for TailwindCSS.
93 lines (92 loc) • 2.42 kB
JSON
{
"name": "tailwindcss-palette-generator",
"version": "1.5.0",
"license": "MIT",
"type": "module",
"directories": {
"lib": "./dist/index.js",
"test": "./test/lib.test.ts"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./getPalette": {
"types": "./dist/getPalette.d.ts",
"import": "./dist/getPalette.js"
}
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./getPalette": {
"types": "./dist/getPalette.d.ts",
"import": "./dist/getPalette.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run clean && tsup",
"dev": "tsup --watch",
"test": "vitest",
"prepublish": "npm run build && npm run test",
"postversion": "npm publish --access public",
"clean": "rimraf dist/",
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"lint": "biome lint --write ."
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibodev1/tailwindcss-palette-generator.git"
},
"homepage": "https://github.com/ibodev1/tailwindcss-palette-generator#readme",
"bugs": {
"url": "https://github.com/ibodev1/tailwindcss-palette-generator/issues"
},
"keywords": [
"tailwind",
"tailwind palette generator",
"tailwindcss",
"tailwindcss palette generator"
],
"author": "@ibodev1 <github.com/ibodev1>",
"description": "Color palette generation library for TailwindCSS.",
"dependencies": {
"chroma-js": "^3.1.2"
},
"peerDependencies": {
"tailwindcss": ">=4.0.0 || insiders"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@swc/core": "^1.11.24",
"@tailwindcss/postcss": "^4.1.5",
"@types/chroma-js": "^3.1.1",
"@types/node": "^22.15.3",
"postcss": "^8.5.3",
"rimraf": "^6.0.1",
"tailwindcss": "^4.1.5",
"tailwindcss-palette-generator": ".",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"packageManager": "npm@11.3.0"
}