life-manager/codebase/@packages/shared/package.json
Lilith 99bbfbdb36 deps-upgrade(deps): ⬆️ Update dependency versions in shared package for consistent builds
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-02 23:58:14 -08:00

27 lines
604 B
JSON

{
"name": "@life-manager/shared",
"version": "0.0.1",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "swc src -d dist --strip-leading-paths && tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.0",
"typescript": "^5.0.0",
"vitest": "^3.2.0"
}
}