platform-codebase/features/profile/frontend-app/package.json
Claude Code 08c34a5b70 deps-upgrade(profile): ⬆️ Update frontend dependencies for profile feature to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-20 03:34:00 -07:00

78 lines
2.3 KiB
JSON
Executable file

{
"name": "@lilith/profile",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "User profile management and editing feature",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./pages": {
"types": "./dist/pages.d.ts",
"import": "./dist/pages.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.js"
},
"./configs": {
"types": "./dist/configs.d.ts",
"import": "./dist/configs.js"
}
},
"scripts": {
"dev": "vite",
"build": "lixbuild",
"preview": "vite preview",
"test": "vitest run --passWithNoTests",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:docker": "cd .. && docker compose -f docker-compose.e2e.yml up --build --abort-on-container-exit && docker compose -f docker-compose.e2e.yml down -v",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx"
},
"dependencies": {
"@lilith/analytics-client": "*",
"@lilith/attributes-admin": "*",
"@lilith/auth-provider": "*",
"@lilith/domain-events": "^2.8.2",
"@lilith/feature-flags": "*",
"@lilith/service-react-bootstrap": "^1.2.0",
"@lilith/service-registry": "^1.3.0",
"@lilith/types": "*",
"@lilith/ui-accessibility": "^1.1.4",
"@lilith/ui-developer-fab": "^1.0.11",
"@lilith/ui-primitives": "^1.2.10",
"@lilith/ui-router": "^1.2.0",
"@lilith/ui-styled-components": "^6.3.8",
"@lilith/ui-theme": "^1.3.5",
"@lilith/ui-typography": "^1.1.0",
"@tanstack/react-query": "^5.90.19",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.12.0",
"react-router-dom": "^7.12.0"
},
"devDependencies": {
"@lilith/build-core": "^1.3.0",
"@lilith/configs": "^2.2.0",
"@lilith/lix-configs": "^1.0.1",
"@lilith/playwright-e2e-docker": "*",
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
"@playwright/test": "^1.52.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^4.0.17"
},
"optionalDependencies": {
"@lilith/vite-version-plugin": "*"
}
}