UNPKG

colorupjs

Version:

A modern, lightweight, and comprehensive color utility library for JavaScript/TypeScript with advanced palette generation and WCAG accessibility tools.

66 lines 1.84 kB
{ "name": "colorupjs", "version": "1.0.0", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "test": "jest --passWithNoTests", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "type-check": "tsc --noEmit", "validate": "npm run type-check && npm run lint && npm run test", "prepublishOnly": "npm run validate && npm run build", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish" }, "keywords": [ "color", "colors", "palette", "accessibility", "wcag", "contrast", "hex", "rgb", "hsl", "design-tokens", "css-variables", "color-harmony", "color-theory", "frontend", "ui", "design-system" ], "author": { "name": "Sandeep Guttula", "email": "sandeepguttula2002@gmail.com" }, "license": "ISC", "repository": { "type": "git", "url": "https://github.com/sandeep-guttula/colorup" }, "description": "A modern, lightweight, and comprehensive color utility library for JavaScript/TypeScript with advanced palette generation and WCAG accessibility tools.", "devDependencies": { "@eslint/js": "^9.27.0", "@types/node": "^22.15.29", "eslint": "^9.27.0", "globals": "^16.2.0", "jest": "^29.7.0", "prettier": "^3.5.3", "rollup": "^4.41.1", "rollup-plugin-dts": "^6.2.1", "rollup-plugin-typescript2": "^0.36.0", "ts-jest": "^29.3.4", "tsup": "^8.5.0", "typescript": "^5.8.3", "typescript-eslint": "^8.33.0" } }