Files
claudemesh/package.json
Alejandro Gutiérrez e76ade64d2
Some checks failed
CI / Lint (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Broker tests (Postgres) (push) Has been cancelled
CI / Docker build (linux/amd64) (push) Has been cancelled
feat: scheduled messages — schedule_reminder, send_later, list_scheduled, cancel_scheduled
- Broker: schedule/list_scheduled/cancel_scheduled WS message types + in-memory delivery
- Client: scheduleMessage(), listScheduled(), cancelScheduled() with resolver Map pattern
- MCP: schedule_reminder, send_later, list_scheduled, cancel_scheduled tools
- CLI: claudemesh remind <msg> --in 2h | --at 15:00 | list | cancel <id>
- Types: WSScheduleMessage, WSScheduledAckMessage, WSScheduledListMessage, WSCancelScheduledAckMessage

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 14:53:42 +01:00

97 lines
2.9 KiB
JSON

{
"name": "claudemesh",
"private": true,
"scripts": {
"build": "pnpm with-env turbo build",
"clean": "turbo clean && git clean -xdf .turbo .cache node_modules",
"dev": "pnpm with-env turbo dev",
"format": "turbo format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location .cache/.prettiercache",
"postinstall": "pnpm lint:ws",
"lint": "turbo lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest -r packages-without-package-json",
"prepare": "husky",
"auth:seed": "set -a && source apps/web/.env.local && set +a && pnpm --filter @turbostarter/auth db:seed",
"admin:grant": "set -a && source apps/web/.env.local && set +a && pnpm --filter @turbostarter/auth admin:grant",
"services:logs": "docker compose logs -f",
"services:setup": "pnpm services:start && pnpm with-env turbo setup",
"services:start": "docker compose up -d --wait",
"services:status": "docker compose ps",
"services:stop": "docker compose down",
"test": "turbo run test",
"test:projects": "vitest run",
"test:projects:watch": "vitest --watch",
"typecheck": "turbo typecheck",
"with-env": "dotenv -c --"
},
"prettier": "@turbostarter/prettier-config",
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@commitlint/types": "20.0.0",
"@turbo/gen": "2.6.3",
"@turbostarter/prettier-config": "workspace:*",
"cross-env": "10.1.0",
"dotenv-cli": "11.0.0",
"husky": "^9.1.7",
"prettier": "catalog:",
"turbo": "2.6.3",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@10.25.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"duckdb",
"better-sqlite3",
"sharp"
]
},
"engines": {
"node": ">=22.17.0"
},
"dependencies": {
"react": "19.2.3"
},
"overrides": {
"csstype": "3.1.3",
"@types/react": "19.2.7"
},
"workspaces": {
"packages": [
"apps/*",
"packages/**",
"tooling/*"
],
"catalog": {
"@tanstack/react-query": "5.90.6",
"@tanstack/react-query-devtools": "5.90.2",
"@tanstack/react-table": "8.21.3",
"@vitest/coverage-v8": "4.0.14",
"@ai-sdk/react": "2.0.94",
"ai": "5.0.94",
"envin": "1.1.10",
"eslint": "9.39.0",
"prettier": "3.6.2",
"react-hook-form": "7.66.0",
"react-native": "0.81.5",
"typescript": "5.9.3",
"vitest": "4.0.14",
"zod": "4.1.13"
},
"catalogs": {
"node22": {
"@types/node": "22.16.0"
},
"react19": {
"@types/react": "19.1.14",
"@types/react-dom": "19.1.9",
"react": "19.1.0",
"react-dom": "19.1.0"
}
}
}
}