react-layout-motion
Version:
React layout animation library (coming soon)
54 lines • 1.3 kB
JSON
{
"name": "react-layout-motion",
"type": "module",
"version": "0.3.1",
"private": false,
"description": "React layout animation library (coming soon)",
"author": "maxam2017",
"license": "MIT",
"homepage": "https://github.com/maxam2017/react-layout-motion#readme",
"repository": {
"type": "git",
"url": "https://github.com/maxam2017/react-layout-motion.git"
},
"bugs": {
"url": "https://github.com/maxam2017/react-layout-motion/issues"
},
"keywords": [
"react",
"animation",
"layout",
"motion",
"web-animations-api"
],
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.29.0",
"rimraf": "^6.0.1",
"rollup": "^4.43.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "pnpm run clean",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev": "rollup -c -w",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix"
}
}