{
  "name": "slowmo",
  "version": "0.16.2",
  "description": "Universal slow-motion control for web animations - CSS, videos, GSAP, Three.js, and more",
  "type": "module",
  "main": "./dist/slowmo.cjs",
  "module": "./dist/slowmo.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/slowmo.js",
      "require": "./dist/slowmo.cjs",
      "types": "./dist/index.d.ts"
    },
    "./dial": {
      "import": "./dist/dial.js",
      "require": "./dist/dial.cjs",
      "types": "./dist/dial-api.d.ts"
    },
    "./react": {
      "import": "./dist/react.js",
      "require": "./dist/react.cjs",
      "types": "./dist/react.d.ts"
    },
    "./recreate": {
      "import": "./dist/recreate.js",
      "require": "./dist/recreate.cjs",
      "types": "./dist/recreate.d.ts"
    }
  },
  "bin": {
    "slowmo": "./dist/cli/index.js"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "slowmo": "bun src/cli/index.ts",
    "dev": "vite demo",
    "build": "vite build",
    "build:demo": "vite build --config vite.demo.config.ts",
    "build:ext": "vite build --config vite.extension.config.ts",
    "zip:extension": "cd extension && zip -r ../slowmo-extension.zip . -x '*.DS_Store' -x 'store-assets/*'",
    "test": "vitest run",
    "test:unit": "vitest run tests/unit",
    "test:watch": "vitest",
    "test:e2e": "playwright test --config tests/e2e/playwright.config.ts",
    "test:e2e:ui": "playwright test --config tests/e2e/playwright.config.ts --ui",
    "test:e2e:extension": "playwright test --config tests/e2e/extension/extension.config.ts",
    "test:all": "npm run test:unit && npm run test:e2e",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish"
  },
  "keywords": [
    "animation",
    "slow-motion",
    "slowmo",
    "debug",
    "css-animation",
    "gsap",
    "three.js",
    "video",
    "framer-motion"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/seflless/slowmo.git"
  },
  "homepage": "https://github.com/seflless/slowmo#readme",
  "bugs": {
    "url": "https://github.com/seflless/slowmo/issues"
  },
  "devDependencies": {
    "@playwright/test": "^1.42.0",
    "@types/node": "^20.11.0",
    "@types/react": "^19.2.10",
    "@vitest/coverage-v8": "^1.2.1",
    "jsdom": "^24.0.0",
    "typescript": "^5.3.3",
    "vite": "^5.0.11",
    "vite-plugin-dts": "^3.7.1",
    "vitest": "^1.2.1"
  },
  "peerDependencies": {
    "gsap": ">=3.0.0",
    "react": ">=16.8.0"
  },
  "peerDependenciesMeta": {
    "gsap": {
      "optional": true
    },
    "react": {
      "optional": true
    }
  },
  "packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
}
