deps-upgrade(cliimessage-mcpimessage): ⬆️ Update dependencies across cli, imessage-mcp, and imessage-sync modules with patch/minor version upgrades

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-03-05 14:54:30 -08:00
commit be1b039ee3
4 changed files with 139 additions and 0 deletions

22
cli/package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "@lilith/imessage-cli",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"messenger": "./dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format esm --dts --clean",
"dev": "bun run src/cli.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"clipanion": "^4.0.0-rc.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0"
}
}

37
imessage-mcp/package.json Normal file
View file

@ -0,0 +1,37 @@
{
"name": "@lilith/imessage-mcp",
"version": "1.0.0",
"description": "MCP server for browsing and searching iMessage conversations synced by imessage-sync",
"type": "module",
"main": "./dist/index.mjs",
"bin": {
"imessage-mcp": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"postbuild": "chmod +x dist/index.js",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"imessage",
"conversations",
"claude-code"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/node": "^20.19.28",
"@types/pg": "^8.11.11",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}

View file

@ -0,0 +1,69 @@
{
"name": "@lilith/imessage-sync-backend",
"version": "0.2.4",
"private": true,
"type": "module",
"description": "iMessage sync backend — receives messages from macOS agent, stores and processes them",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:cov": "vitest run --coverage",
"migration:generate": "typeorm migration:generate -d ./src/data-source.ts",
"migration:run": "typeorm migration:run -d ./src/data-source.ts",
"migration:revert": "typeorm migration:revert -d ./src/data-source.ts"
},
"dependencies": {
"@lilith/nestjs-health": "^1.0.33",
"@lilith/service-nestjs-bootstrap": "^2.2.6",
"@lilith/typeorm-entities": "^1.0.33",
"@nestjs/cache-manager": "^3.1.0",
"@nestjs/common": "11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "11.1.11",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "11.1.11",
"@nestjs/swagger": "^11.2.5",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"cache-manager": "^7.2.8",
"cache-manager-redis-store": "^3.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.17.1",
"redis": "^4.7.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28",
"uuid": "^9.0.1"
},
"devDependencies": {
"@lilith/configs": "^2.2.0",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.12",
"@swc/cli": "^0.7.10",
"@swc/core": "^1.15.8",
"@types/cache-manager-redis-store": "^2.0.4",
"@types/express": "^4.17.25",
"@types/node": "^20.19.30",
"@types/passport-jwt": "^4.0.1",
"@types/uuid": "^9.0.8",
"unplugin-swc": "^1.5.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"overrides": {
"@lilith/nestjs-health": "^1.0.33",
"bare-fs": "^3.0.0"
}
}

View file

@ -0,0 +1,11 @@
{
"name": "@lilith/imessage-sync-shared",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"dependencies": {
"@lilith/types": "*"
}
}