mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 16:59:40 +02:00
- Create shared logger package with logger, perfLogger, networkLogger - Support both __DEV__ (React Native) and NODE_ENV environments - Migrate manadeck and picture mobile apps to use shared package Savings: ~120 LOC (126 → 10 LOC in apps)
21 lines
434 B
JSON
21 lines
434 B
JSON
{
|
|
"name": "@manacore/shared-logger",
|
|
"version": "1.0.0",
|
|
"description": "Shared logging utilities for ManaCore mobile and web apps",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|