mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 16:41:08 +02:00
Assign version numbers based on app maturity: Calendar/Contacts/Todo (1.0.0), Chat/Picture (0.3.0), 11 beta apps (0.2.0), Context/Planta/Questions (0.1.0), Traces (0.0.1). Set up @changesets/cli for future version management. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
724 B
JSON
40 lines
724 B
JSON
{
|
|
"name": "@memoro/ui",
|
|
"version": "0.3.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"
|
|
]
|
|
}
|