UNPKG

@thednp/bezier-easing

Version:

🍬 A Typescript based cubic-bezier easing functions factory for KUTE.js based on UnitBezier

70 lines 1.94 kB
{ "name": "@thednp/bezier-easing", "version": "1.0.10", "description": "🍬 A Typescript based cubic-bezier easing functions factory for KUTE.js based on UnitBezier", "homepage": "https://github.com/thednp/bezier-easing", "author": "thednp", "license": "MIT", "main": "./dist/bezier-easing.js", "module": "./dist/bezier-easing.mjs", "exports": { ".": { "types": "./dist/bezier-easing.d.ts", "require": "./dist/bezier-easing.cjs", "import": "./dist/bezier-easing.mjs" } }, "bugs": { "url": "https://github.com/thednp/bezier-easing/issues" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "git+https://github.com/thednp/bezier-easing.git" }, "keywords": [ "kute.js", "cubic-bezier", "cubic-bezier-easing", "easing", "ease", "easing functions", "animation engine", "animation", "animations", "typescript" ], "devDependencies": { "@testing-library/dom": "^10.4.0", "@types/node": "^22.15.23", "@vitest/coverage-istanbul": "^3.1.4", "@vitest/ui": "^3.1.4", "happy-dom": "^17.5.6", "typescript": "^5.8.3", "vite": "^6.3.5", "vite-plugin-dts": "^4.5.4", "vite-plugin-strip-comments": "^0.0.5", "vitest": "^3.1.4" }, "packageManager": "pnpm@8.6.12", "engines": { "node": ">=20", "pnpm": ">=8.6.0" }, "scripts": { "pre-test": "pnpm clean-coverage", "clean-coverage": "rm -rf coverage .nyc_output", "test": "pnpm pre-test && vitest", "test-ui": "pnpm pre-test && vitest --ui", "badges": "npx -p dependency-version-badge update-badge typescript vitest vite", "format": "deno fmt src", "lint": "pnpm lint:ts && pnpm lint:types", "lint:ts": "deno lint src", "lint:types": "tsc --noEmit", "fix:ts": "deno lint src --fix", "build": "vite build" } }