{
  "name": "@motion.page/sdk",
  "version": "1.2.5",
  "description": "High-performance CSS animation SDK with scroll, hover, gesture, and cursor triggers",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "llms.txt",
    "!dist/**/*.map"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.build.json && bun build src/index.ts --outdir dist --minify --sourcemap=external && mkdir -p dist/.cjs-tmp && bun build src/index.ts --outdir dist/.cjs-tmp --format=cjs --minify --sourcemap=external && mv dist/.cjs-tmp/index.js dist/index.cjs && mv dist/.cjs-tmp/index.js.map dist/index.cjs.map && rm -rf dist/.cjs-tmp",
    "test": "bun test",
    "test:parity": "bun test tests/parity",
    "test:bench": "bun test --bench",
    "typecheck": "tsc --noEmit"
  },
  "devDependencies": {
    "@happy-dom/global-registrator": "^15.0.0",
    "@types/bun": "latest",
    "@types/jsdom": "^27.0.0",
    "esbuild": "^0.27.2",
    "jsdom": "^27.3.0",
    "typescript": "^6.0.3"
  },
  "keywords": [
    "animation",
    "gsap",
    "tween",
    "timeline",
    "motion",
    "css",
    "transform"
  ],
  "author": "Motion.page",
  "license": "FSL-1.1-Apache-2.0",
  "homepage": "https://motion.page",
  "sideEffects": true
}
