mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 01:21:09 +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>
23 lines
483 B
JSON
23 lines
483 B
JSON
{
|
|
"name": "@nutriphi/shared",
|
|
"version": "0.2.0",
|
|
"type": "commonjs",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./types": "./src/types/index.ts",
|
|
"./utils": "./src/utils/index.ts",
|
|
"./constants": "./src/constants/index.ts"
|
|
},
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "~5.9.2",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"dependencies": {}
|
|
}
|