platform-codebase/@packages/@hooks/react-hooks/package.json

22 lines
561 B
JSON
Raw Normal View History

{
"name": "@lilith/react-hooks",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Shared React hooks for the lilith platform monorepo",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "echo 'Skipping lint - react-hooks is a minimal package'",
"test": "echo 'Skipping test - react-hooks has no tests yet'"
},
"dependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"typescript": "^5.3.3"
}
}