90 lines
2.3 KiB
JSON
Executable file
90 lines
2.3 KiB
JSON
Executable file
{
|
|
"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": {
|
|
"@lilith/service-registry": "1.3.0-dev.1769368894",
|
|
"@lilith/vite-plugin-dependency-startup": "1.1.1-dev.1769368912",
|
|
"date-fns": "^3.6.0",
|
|
"recharts": "^2.15.4"
|
|
},
|
|
"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.57.0",
|
|
"@types/node": "^22.19.7",
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitest/coverage-v8": "^4.0.17",
|
|
"jsdom": "^27.4.0",
|
|
"react-router-dom": "^7.12.0",
|
|
"rxjs": "^7.8.2",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.17"
|
|
}
|
|
}
|