@ducor/hooks
Version:
A collection of useful React hooks for building modern web applications. Includes hooks for clipboard operations, window events, intervals, timeouts, and more.
61 lines • 1.5 kB
JSON
{
"name": "@ducor/hooks",
"version": "5.0.9",
"description": "A collection of useful React hooks for building modern web applications. Includes hooks for clipboard operations, window events, intervals, timeouts, and more.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"dependencies": {
"react": "^19.0.0",
"copy-to-clipboard": "^3.3.3"
},
"devDependencies": {
"@types/react": "^19.0.0",
"rimraf": "^6.0.1",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2",
"@ducor/types": "5.0.8"
},
"files": [
"dist/*"
],
"excluded": [
"node_modules",
"docs"
],
"repository": {
"type": "git",
"url": "https://github.com/ducorui/ducor.git",
"directory": "packages/hooks"
},
"keywords": [
"react",
"hooks",
"typescript",
"clipboard",
"interval",
"timeout",
"window-events",
"fullscreen",
"hover",
"scroll",
"element-size",
"outside-click",
"idle",
"uuid",
"boolean",
"unmount-effect"
],
"author": "Jubayed Hossain <jubayedhossain@gmail.com> (https://github.com/jubayedhossain)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ducorui/ducor/issues"
},
"homepage": "https://ui.ducor.net/hooks",
"scripts": {
"build": "tsc",
"watch": "tsc-watch --onSuccess \"npm run build\"",
"release2": "node ../../scripts/release.js",
"clean:dist": "rimraf --glob \"**/dist\"",
"clean": "rimraf --glob \"**/node_modules\""
}
}