| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- {
- "name": "framer-motion",
- "version": "12.7.3",
- "description": "A simple and powerful JavaScript animation library",
- "main": "dist/cjs/index.js",
- "module": "dist/es/index.mjs",
- "exports": {
- ".": {
- "types": "./dist/types/index.d.ts",
- "require": "./dist/cjs/index.js",
- "import": "./dist/es/index.mjs",
- "default": "./dist/cjs/index.js"
- },
- "./debug": {
- "types": "./dist/debug.d.ts",
- "require": "./dist/cjs/debug.js",
- "import": "./dist/es/debug.mjs",
- "default": "./dist/cjs/debug.js"
- },
- "./dom/mini": {
- "types": "./dist/dom-mini.d.ts",
- "require": "./dist/cjs/dom-mini.js",
- "import": "./dist/es/dom-mini.mjs",
- "default": "./dist/cjs/dom-mini.js"
- },
- "./dom": {
- "types": "./dist/dom.d.ts",
- "require": "./dist/cjs/dom.js",
- "import": "./dist/es/dom.mjs",
- "default": "./dist/cjs/dom.js"
- },
- "./client": {
- "types": "./dist/types/client.d.ts",
- "require": "./dist/cjs/client.js",
- "import": "./dist/es/client.mjs",
- "default": "./dist/cjs/client.js"
- },
- "./m": {
- "types": "./dist/m.d.ts",
- "require": "./dist/cjs/m.js",
- "import": "./dist/es/m.mjs",
- "default": "./dist/cjs/m.js"
- },
- "./mini": {
- "types": "./dist/mini.d.ts",
- "require": "./dist/cjs/mini.js",
- "import": "./dist/es/mini.mjs",
- "default": "./dist/cjs/mini.js"
- },
- "./projection": {
- "import": "./dist/es/projection.mjs",
- "default": "./dist/es/projection.mjs"
- },
- "./package.json": "./package.json"
- },
- "types": "dist/types/index.d.ts",
- "author": "Matt Perry",
- "license": "MIT",
- "repository": "https://github.com/motiondivision/motion/",
- "sideEffects": false,
- "keywords": [
- "react animation",
- "react",
- "pose",
- "react pose",
- "animation",
- "gestures",
- "drag",
- "spring",
- "popmotion",
- "framer",
- "waapi"
- ],
- "scripts": {
- "eslint": "yarn run lint",
- "lint": "yarn eslint src/**/*.ts",
- "build": "yarn clean && tsc --noEmitOnError -p . && rollup -c && node ./scripts/check-bundle.js",
- "dev": "yarn watch",
- "clean": "rm -rf types dist lib",
- "test": "yarn test-server && yarn test-client",
- "test-client": "jest --config jest.config.json --max-workers=2",
- "test-server": "jest --config jest.config.ssr.json",
- "prettier": "prettier ./src/* --write",
- "watch": "concurrently -c blue,red -n tsc --noEmitOnError ,rollup --kill-others \"tsc --noEmitOnError --watch -p . --preserveWatchOutput\" \"rollup --config --watch --no-watch.clearScreen\"",
- "prepack": "yarn build && yarn measure",
- "postpublish": "git push --tags",
- "measure": "rollup -c ./rollup.size.config.mjs"
- },
- "dependencies": {
- "motion-dom": "^12.7.3",
- "motion-utils": "^12.7.2",
- "tslib": "^2.4.0"
- },
- "devDependencies": {
- "@thednp/dommatrix": "^2.0.11",
- "@types/three": "0.137.0",
- "three": "0.137.0"
- },
- "peerDependencies": {
- "@emotion/is-prop-valid": "*",
- "react": "^18.0.0 || ^19.0.0",
- "react-dom": "^18.0.0 || ^19.0.0"
- },
- "peerDependenciesMeta": {
- "@emotion/is-prop-valid": {
- "optional": true
- },
- "react": {
- "optional": true
- },
- "react-dom": {
- "optional": true
- }
- },
- "bundlesize": [
- {
- "path": "./dist/size-rollup-motion.js",
- "maxSize": "35.1 kB"
- },
- {
- "path": "./dist/size-rollup-m.js",
- "maxSize": "6 kB"
- },
- {
- "path": "./dist/size-rollup-dom-animation.js",
- "maxSize": "17.9 kB"
- },
- {
- "path": "./dist/size-rollup-dom-max.js",
- "maxSize": "29.8 kB"
- },
- {
- "path": "./dist/size-rollup-animate.js",
- "maxSize": "18.7 kB"
- },
- {
- "path": "./dist/size-rollup-scroll.js",
- "maxSize": "5.3 kB"
- },
- {
- "path": "./dist/size-rollup-waapi-animate.js",
- "maxSize": "2.7 kB"
- }
- ],
- "gitHead": "b9f31f14292536d6cedd465f38c4df7d71987eca"
- }
|