UNPKG

@peculiar/color

Version:

Library for color manipulation and conversion in JavaScript.

51 lines (50 loc) 1.37 kB
{ "name": "@peculiar/color", "private": false, "version": "0.1.6", "author": "PeculiarVentures Team", "description": "Library for color manipulation and conversion in JavaScript.", "keywords": [ "color", "rgb", "hex", "hsb", "palette" ], "sideEffects": false, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "esnext": "dist/esnext/index.js", "typings": "dist/types/index.d.ts", "files": [ "dist/" ], "repository": { "type": "git", "url": "https://github.com/PeculiarVentures/peculiar-ui.git", "directory": "packages/color" }, "scripts": { "prebuild": "yarn clean", "build": "yarn build:esm && yarn build:cjs && yarn build:esnext", "build:esm": "tsc -p tsconfig.build.json", "build:cjs": "tsc -p tsconfig.build.json -m commonjs --outDir dist/cjs", "build:esnext": "tsc -p tsconfig.build.json -t esnext --outDir dist/esnext", "clean": "rimraf public dist", "test:unit": "jest --passWithNoTests --watchAll", "test:unit:coverage": "yarn test:unit --coverage --watchAll=false", "check:types": "tsc --noEmit" }, "devDependencies": { "rimraf": "^3.0.2", "typescript": "5.1.6" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=18.x" }, "license": "MIT", "gitHead": "707402500405b2595e26e029a3e47aefe46b5a0c" }