workspace-v1/shared/modules/package.json
rckrdmrd cb4c0681d3 feat(workspace): Add new projects and update architecture
New projects created:
- michangarrito (marketplace mobile)
- template-saas (SaaS template)
- clinica-dental (dental ERP)
- clinica-veterinaria (veterinary ERP)

Architecture updates:
- Move catalog from core/ to shared/
- Add MCP servers structure and templates
- Add git management scripts
- Update SUBREPOSITORIOS.md with 15 new repos
- Update .gitignore for new projects

Repository infrastructure:
- 4 main repositories
- 11 subrepositorios
- Gitea remotes configured

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:43:28 -06:00

30 lines
600 B
JSON

{
"name": "@shared/modules",
"version": "1.0.0",
"description": "Core modules compartidos para todos los proyectos del workspace",
"main": "index.ts",
"types": "index.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"exports": {
"./utils": "./utils/index.ts",
"./utils/*": "./utils/*.ts"
},
"keywords": [
"core",
"utils",
"shared",
"workspace"
],
"author": "ISEM Team",
"license": "PROPRIETARY"
}