{
  "name": "@thednp/bezier-easing",
  "version": "1.0.9",
  "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.9.3",
    "@vitest/coverage-istanbul": "^2.1.5",
    "@vitest/ui": "^2.1.5",
    "happy-dom": "^15.11.6",
    "typescript": "^5.7.2",
    "vite": "^5.4.11",
    "vite-plugin-dts": "^4.3.0",
    "vite-plugin-strip-comments": "^0.0.4",
    "vitest": "^2.1.5"
  },
  "engines": {
    "node": ">=16",
    "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"
  }
}