use-ripple-hook
Version:
Customizable, lightweight React hook for implementing Google's Material UI style ripple effect
59 lines • 1.28 kB
JSON
{
"name": "use-ripple-hook",
"version": "2.0.0",
"type": "module",
"repository": {
"url": "https://github.com/asplunds/use-ripple"
},
"description": "Customizable, lightweight React hook for implementing Google's Material UI style ripple effect",
"main": "dist/cjs/ripple.js",
"module": "dist/esm/ripple.js",
"types": "dist/esm/ripple.d.ts",
"sideEffects": false,
"keywords": [
"useripple",
"use-ripple",
"material",
"ripple",
"react",
"hook"
],
"exports": {
".": {
"import": {
"types": "./dist/esm/ripple.d.ts",
"default": "./dist/esm/ripple.js"
},
"require": {
"types": "./dist/cjs/ripple.d.ts",
"default": "./dist/cjs/ripple.js"
}
}
},
"author": "Jonathan Asplund",
"license": "ISC",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"readme.md",
"LICENSE"
],
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^19.2.0",
"husky": "^9.1.7",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"typescript": "^6.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"format": "oxfmt",
"format:check": "oxfmt --check"
}
}