{
    "name": "motion-number",
    "version": "1.0.0",
    "description": "An animated number component for React, built on Motion for React.",
    "author": {
        "name": "Matt Perry",
        "url": "https://motion.dev"
    },
    "main": "dist/cjs/index.js",
    "module": "dist/es/index.mjs",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "require": "./dist/cjs/index.js",
            "import": "./dist/es/index.mjs",
            "default": "./dist/cjs/index.js"
        }
    },
    "types": "dist/index.d.ts",
    "scripts": {
        "clean": "rm -rf types dist lib",
        "build": "yarn clean && tsc -p . && rollup --config",
        "dev": "yarn build && concurrently -c blue,red -n tsc,rollup --kill-others \"tsc --watch -p . --preserveWatchOutput\" \"rollup --config --watch --no-watch.clearScreen\"",
        "test": "bundlesize && yarn jest --passWithNoTests",
        "new": "npm publish",
        "new-alpha": "npm publish --tag alpha"
    },
    "dependencies": {
        "motion": "^12.0.6"
    },
    "devDependencies": {
        "jest": "^29.7.0",
        "jest-environment-jsdom": "^29.7.0",
        "ts-jest": "^29.2.5"
    },
    "peerDependencies": {
        "react": "^18.0.0 || ^19.0.0",
        "react-dom": "^18.0.0 || ^19.0.0"
    },
    "peerDependenciesMeta": {
        "react": {
            "optional": true
        },
        "react-dom": {
            "optional": true
        }
    },
    "bundlesize": [
        {
            "path": "./dist/motion-number.size.js",
            "maxSize": "2.6 kB"
        }
    ]
}
