UNPKG

typescript-color-gradient

Version:

typescript-color-gradient is a typescript native fork of javascript-color-gradient, a lightweight JavaScript library used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints.

53 lines 1.64 kB
{ "name": "typescript-color-gradient", "version": "4.1.0", "description": "typescript-color-gradient is a typescript native fork of javascript-color-gradient, a lightweight JavaScript library used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints.", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist", "LICENSE", "README.md" ], "repository": { "type": "git", "url": "https://github.com/NikPiermafrost/typescript-color-gradient" }, "keywords": [ "typescript-color-palette", "color-gradient", "typescript-palette", "color-picker", "color-generator", "color-wavelengths", "typescript", "color", "gradient" ], "author": "Nicola Piermattei <pierma.nick@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/NikPiermafrost/typescript-color-gradient/issues" }, "homepage": "https://nicolapiermattei.net/examples/typescript-color-gradient", "devDependencies": { "@tapjs/test": "^2.2.4", "@tapjs/typescript": "^1.4.13", "@types/tap": "^15.0.12", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.57.1", "nyc": "^17.1.0", "tap": "^19.2.5", "ts-node": "^10.9.2", "tsup": "^8.3.5", "typescript": "^5.7.2" }, "scripts": { "lint": "tsc", "test": "tap --tsconfig=./tsconfig.json || echo", "build": "tsup ./src/index.ts --format cjs,esm --dts", "coverage": "nyc tap --tsconfig=./tsconfig.json || echo" } }