react-textmotion
Version:
Lightweight yet powerful library that provides variable animation effects for React applications.
101 lines (100 loc) • 3.1 kB
JSON
{
"name": "react-textmotion",
"version": "0.0.3",
"description": "Lightweight yet powerful library that provides variable animation effects for React applications.",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"react",
"text",
"animation",
"motion",
"textmotion",
"react-textmotion"
],
"author": {
"name": "Donghyun Lee",
"url": "https://github.com/shubug1015",
"email": "shubug015@gmail.com"
},
"homepage": "https://github.com/shubug1015/react-textmotion",
"bugs": "https://github.com/shubug1015/react-textmotion/issues",
"repository": "https://github.com/shubug1015/react-textmotion",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"prebuild": "rm -rf dist",
"fix": "pnpm run fix:lint && pnpm run fix:format",
"fix:lint": "eslint src --fix",
"fix:format": "prettier . --write",
"test": "pnpm run test:lint && pnpm run test:format && pnpm run test:type && pnpm run test:spec && pnpm run test:coverage",
"test:lint": "eslint src",
"test:format": "prettier . --list-different",
"test:type": "tsc --noEmit",
"test:spec": "jest --runInBand",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@eslint/js": "^9.29.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "19.1.5",
"@types/react-dom": "19.1.5",
"@typescript-eslint/parser": "^8.34.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.2.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.3",
"jest-environment-jsdom": "^30.0.2",
"lint-staged": "^16.1.2",
"postcss": "^8.5.6",
"prettier": "^3.6.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup": "^4.43.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.89.2",
"ts-jest": "^29.4.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"peerDependencies": {
"react": "*"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint src --fix",
"prettier . --write"
]
},
"packageManager": "pnpm@10.11.0"
}