{
  "name": "@dong-gri/motionkit",
  "version": "0.8.1",
  "description": "Configurable web interaction toolkit — 34 motion, media, scroll, loader, and text modules driven by data-mk-* attributes or a JavaScript API. Zero required dependencies.",
  "type": "module",
  "keywords": [
    "animation",
    "motion",
    "interaction",
    "scroll",
    "parallax",
    "cursor",
    "lightbox",
    "marquee",
    "counter",
    "typewriter",
    "text-effect",
    "reveal",
    "web-animation",
    "vanilla-js",
    "ui"
  ],
  "homepage": "https://git.dongri.me/example/motionKit",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/catgarret/motionKit.git"
  },
  "bugs": {
    "url": "https://github.com/catgarret/motionKit/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/motionkit.umd.cjs",
  "module": "./dist/motionkit.js",
  "browser": "./dist/motionkit.umd.cjs",
  "unpkg": "./dist/motionkit.umd.min.js",
  "jsdelivr": "./dist/motionkit.umd.min.js",
  "exports": {
    ".": {
      "import": "./dist/motionkit.js",
      "require": "./dist/motionkit.umd.cjs",
      "default": "./dist/motionkit.js"
    },
    "./min": "./dist/motionkit.min.js",
    "./umd": "./dist/motionkit.umd.min.js",
    "./react": "./src/adapters/react.js",
    "./vue": "./src/adapters/vue.js",
    "./jquery": "./src/adapters/jquery.js",
    "./style.css": "./dist/motionkit.css",
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "src/adapters",
    "demo",
    "docs",
    "FEATURE_CONTRACT.md",
    "motionkit.features.json",
    "motionkit.features.schema.json",
    "OWNER_REQUIREMENTS.md",
    "motionkit.requirements.json",
    "AGENTS.md",
    "ARCHITECTURE.md",
    "CONTEXT.md",
    "CHANGELOG.md",
    "README.md",
    "README.en.md",
    "README.jp.md",
    "LICENSE",
    "CONTRIBUTING.md",
    "STABILIZATION_REPORT.md",
    "QA_REPORT.md"
  ],
  "sideEffects": [
    "**/*.css"
  ],
  "scripts": {
    "dev": "vite",
    "lint": "eslint src tests/*.js tests/*.mjs demo/playground.js",
    "build:esm": "vite build",
    "build:umd": "vite build --config vite.config.umd.js && node scripts/copy-umd.mjs",
    "build:min": "node scripts/build-min.mjs",
    "build": "npm run build:esm && npm run build:umd && npm run build:min",
    "test:contract": "node tests/feature-contract.mjs",
    "test:browser": "node tests/retry-browser-test.mjs tests/browser-smoke.mjs",
    "test:package": "node tests/package-check.mjs",
    "test": "npm run test:utils && npm run test:contract && npm run test:requirements && npm run test:docs && npm run test:demo && npm run test:package",
    "test:node": "npm run test:utils && npm run test:contract && npm run test:requirements && npm run test:docs && npm run test:package",
    "verify": "npm run lint && npm run build && npm test && npm audit --audit-level=low && npm pack --dry-run",
    "verify:quick": "npm run lint && npm run build && npm run test:node && npm pack --dry-run",
    "preview": "vite preview",
    "test:utils": "node tests/utils.mjs",
    "docs:contract": "node scripts/generate-contract-doc.mjs",
    "test:docs": "node scripts/generate-contract-doc.mjs --check",
    "test:requirements": "node tests/owner-requirements.mjs",
    "test:demo": "node tests/retry-browser-test.mjs tests/demo-qa.mjs",
    "test:animated-media": "node tests/retry-browser-test.mjs tests/animated-media-qa.mjs"
  },
  "author": {
    "name": "dongri",
    "url": "https://dongri.me"
  },
  "license": "MIT",
  "dependencies": {
    "gsap": "^3.15.0",
    "lenis": "^1.3.25"
  },
  "peerDependencies": {
    "jquery": ">=3.6.0",
    "react": ">=18.0.0",
    "vue": ">=3.3.0"
  },
  "peerDependenciesMeta": {
    "jquery": {
      "optional": true
    },
    "react": {
      "optional": true
    },
    "vue": {
      "optional": true
    }
  },
  "devDependencies": {
    "eslint": "^9.39.5",
    "playwright-core": "^1.61.1",
    "vite": "^8.1.5"
  },
  "engines": {
    "node": "^20.19.0 || >=22.12.0"
  }
}
