mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
Fix critical issues and add validation to prevent future violations: **Fixes:** - Remove turbo recursion in 5 app packages (infinite loop risk) - Add "private": true to 11 packages (prevent accidental publishing) - Rename @mana-core/nestjs-integration → @manacore/nestjs-integration - Remove prepublishOnly scripts from 3 private packages **New:** - Add scripts/validate-monorepo.mjs with 4 critical checks - Add validate:monorepo command to package.json - Integrate validation into CI pipeline (.github/workflows/ci.yml) - Document validation in CLAUDE.md All 80 package.json files now pass validation ✅ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
647 B
JSON
36 lines
647 B
JSON
{
|
|
"name": "@manacore/better-auth-types",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Centralized Better Auth type definitions for the Mana Core monorepo",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"better-auth": "^1.4.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"better-auth": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"keywords": [
|
|
"manacore",
|
|
"better-auth",
|
|
"types",
|
|
"authentication",
|
|
"jwt"
|
|
],
|
|
"license": "MIT"
|
|
}
|