21 lines
550 B
JSON
Executable file
21 lines
550 B
JSON
Executable file
{
|
|
"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": "^19.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.2.8",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|