mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:01:09 +02:00
- Add web-vitals package with LCP/CLS/INP/FCP/TTFB → Umami tracking - Set GlitchTip user context on login, clear on logout - Add funnel events: first_content_created, user_return_visit, second_module_used, guest_converted - Track first content via Dexie creating hook (fires once per user) - Track module usage via route navigation effect - Track guest→registered conversion on signup Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
675 B
JSON
28 lines
675 B
JSON
{
|
|
"name": "@manacore/shared-utils",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Shared utility functions for Manacore monorepo",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./analytics": "./src/analytics.ts",
|
|
"./analytics-server": "./src/analytics-server.ts",
|
|
"./security-headers": "./src/security-headers.ts",
|
|
"./web-vitals": "./src/web-vitals.ts"
|
|
},
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^4.1.0",
|
|
"web-vitals": "^5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|