platform-codebase/@packages/@plugins/analytics/package.json
Lilith 0c60c4ac96 ♻️ Update dependencies for new package structure
Update all package.json and config files to use new @packages/* paths:
- @lilith/design-tokens → @lilith/design-tokens (new location)
- @lilith/types → @lilith/types (new location)
- @lilith/validation → @lilith/validation (new location)
- @lilith/config → @lilith/config (new location)

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-30 21:14:13 -08:00

87 lines
2.1 KiB
JSON

{
"name": "@lilith/analytics",
"version": "0.1.0",
"description": "Analytics plugin for Lilith Platform - UI components, pages, and client SDK",
"type": "module",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"exports": {
".": "./dist/index.js",
"./api": "./dist/api/index.js",
"./components": "./dist/components/index.js",
"./pages": "./dist/pages/index.js",
"./hooks": "./dist/hooks/index.js",
"./providers": "./dist/providers/index.js",
"./react": "./dist/react/index.js",
"./nestjs": "./dist/nestjs/index.js",
"./types": "./dist/types/index.js"
},
"files": [
"dist",
"src"
],
"dependencies": {
"date-fns": "^3.6.0",
"recharts": "^2.12.0"
},
"peerDependencies": {
"@lilith/ui-theme": "^1.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": ">=6.0.0",
"rxjs": "^7.8.0",
"styled-components": "^6.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"react-router-dom": {
"optional": true
},
"styled-components": {
"optional": true
},
"@lilith/ui-theme": {
"optional": true
},
"@nestjs/common": {
"optional": true
},
"@nestjs/core": {
"optional": true
},
"rxjs": {
"optional": true
}
},
"devDependencies": {
"@lilith/config": "workspace:*",
"@nestjs/common": "^11.1.11",
"@nestjs/core": "^11.1.11",
"@playwright/test": "^1.49.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^4.0.16",
"jsdom": "^27.4.0",
"react-router-dom": "^7.11.0",
"rxjs": "^7.8.0",
"typescript": "^5.9.0",
"vitest": "^4.0.16"
}
}