mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
39 lines
805 B
JSON
39 lines
805 B
JSON
{
|
|
"name": "@metabuilder/hooks-utils",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Utility hooks for MetaBuilder - data table, async operations, and core utilities",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc --declaration --emitDeclarationOnly",
|
|
"lint": "eslint src/",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"hooks",
|
|
"table",
|
|
"data-grid",
|
|
"pagination",
|
|
"sorting",
|
|
"filtering",
|
|
"search",
|
|
"async",
|
|
"promise"
|
|
],
|
|
"author": "MetaBuilder",
|
|
"license": "MIT",
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0 || ^19.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
]
|
|
}
|