UNPKG

@phucbm/lerp

Version:

A lightweight TypeScript utility function for linear interpolation

69 lines (68 loc) 1.45 kB
{ "name": "@phucbm/lerp", "version": "1.0.1", "description": "A lightweight TypeScript utility function for linear interpolation", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "build": "npm run clean && tsup", "clean": "rm -rf dist", "test": "jest", "test:watch": "jest --watch", "prepublishOnly": "npm run build" }, "keywords": [ "lerp", "linear-interpolation", "animation", "easing", "typescript", "utility", "math" ], "author": { "name": "phucbm", "url": "https://github.com/phucbm" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/phucbm/lerp.git" }, "bugs": { "url": "https://github.com/phucbm/lerp/issues" }, "homepage": "https://github.com/phucbm/lerp#readme", "devDependencies": { "@phucbm/banner": "v0.0.2", "@types/jest": "^29.5.14", "@types/node": "^24.0.3", "jest": "^29.7.0", "ts-jest": "^29.2.5", "tsup": "^8.5.0", "typescript": "^5.8.3" }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "./package.json": "./package.json" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=16" }, "sideEffects": false }