@thednp/bezier-easing
Version:
🍬 A Typescript based cubic-bezier easing functions factory for KUTE.js based on UnitBezier
74 lines • 1.9 kB
JSON
{
"name": "@thednp/bezier-easing",
"version": "1.0.14",
"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"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"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.1",
"@types/node": "^25.5.0",
"@vitest/coverage-istanbul": "^4.1.2",
"@vitest/ui": "^4.1.2",
"happy-dom": "^20.8.8",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-strip-comments": "^0.0.10",
"vitest": "^4.1.2"
},
"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",
"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"
}
}