mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 03:29:40 +02:00
- Add uload project with apps/web structure
- Reorganize from flat to monorepo structure
- Remove PocketBase binary and local data
- Update to pnpm and @uload/web namespace
- Add picture project to monorepo
- Remove embedded git repository
- Unify all package names to @{project}/{app} schema:
- @maerchenzauber/* (was @storyteller/*)
- @manacore/* (was manacore-*, manacore)
- @manadeck/* (was web, backend, manadeck)
- @memoro/* (was memoro-web, landing, memoro)
- @picture/* (already unified)
- @uload/web
- Add convenient dev scripts for all apps:
- pnpm dev:{project}:web
- pnpm dev:{project}:landing
- pnpm dev:{project}:mobile
- pnpm dev:{project}:backend
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
782 B
JSON
40 lines
782 B
JSON
{
|
|
"name": "@memoro/ui",
|
|
"version": "0.1.0",
|
|
"description": "CLI tool for copying UI components into your app (shadcn-style)",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"memoro-ui": "./bin/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"ui",
|
|
"components",
|
|
"react-native",
|
|
"expo",
|
|
"cli"
|
|
],
|
|
"author": "memoro",
|
|
"license": "PRIVATE",
|
|
"dependencies": {
|
|
"commander": "^11.1.0",
|
|
"chalk": "^4.1.2",
|
|
"ora": "^5.4.1",
|
|
"prompts": "^2.4.2",
|
|
"fs-extra": "^11.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.5",
|
|
"@types/prompts": "^2.4.9",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin"
|
|
]
|
|
}
|