platform-codebase/features/attributes/frontend-admin/package.json
Lilith 6bd9089b36 ⬆️ Update React peer dependencies to ^19.0.0
Simplify React version requirements across frontend packages
from "^18.0.0 || ^19.0.0" to "^19.0.0" for consistency.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-02 23:55:44 -08:00

59 lines
1.6 KiB
JSON

{
"name": "@lilith/attributes-admin",
"version": "1.0.0",
"description": "Attributes feature frontend - UI components and React hooks",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
},
"./hooks": {
"import": "./src/hooks/index.ts",
"types": "./src/hooks/index.ts"
},
"./components": {
"import": "./src/components/index.ts",
"types": "./src/components/index.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest"
},
"dependencies": {
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-virtual": "^3.0.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"styled-components": "^6.0.0"
},
"devDependencies": {
"@lilith/config": "workspace:*",
"@lilith/test-utils": "workspace:*",
"@testing-library/jest-dom": "^6.0.0",
"@vitejs/plugin-react": "^4.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jsdom": "^24.0.0",
"msw": "^2.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"styled-components": "^6.1.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vitest": "^4.0.16"
},
"private": true,
"sideEffects": false
}