2026-03-27 13:40:25 -06:00
|
|
|
{
|
2026-05-05 14:31:16 +02:00
|
|
|
"name": "@singularity-forge/daemon",
|
2026-05-05 16:31:53 +02:00
|
|
|
"version": "2.75.3",
|
2026-05-05 14:31:16 +02:00
|
|
|
"description": "sf-run daemon — background process for project monitoring and Discord integration",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/singularity-forge/sf-run.git",
|
|
|
|
|
"directory": "packages/daemon"
|
|
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"bin": {
|
|
|
|
|
"sf-daemon": "./dist/cli.js",
|
|
|
|
|
"sf-server": "./dist/cli.js"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2026-05-10 11:58:58 +02:00
|
|
|
"build": "tsgo",
|
2026-05-05 14:31:16 +02:00
|
|
|
"test": "vitest run packages/daemon/src --root ../.. --config vitest.config.ts"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-05-09 14:45:02 +02:00
|
|
|
"@anthropic-ai/sdk": "^0.95.1",
|
2026-05-05 16:31:53 +02:00
|
|
|
"@singularity-forge/rpc-client": "^2.75.3",
|
2026-05-05 14:31:16 +02:00
|
|
|
"discord.js": "^14.25.1",
|
|
|
|
|
"yaml": "^2.8.0",
|
chore: bump dependencies — patch, minor, and zod v3→v4 in daemon
Patch: zod 4.4.1→4.4.3, @anthropic-ai/claude-agent-sdk 0.2.128→0.2.137,
yaml 2.8.2→2.8.4, minimatch 10.2.3→10.2.5, @types/picomatch 4.0.2→4.0.3,
discord.js 14.25→14.26.4, zod-to-json-schema 3.24→3.25.2,
esbuild 0.27.4→0.27.7
Minor: @anthropic-ai/sdk 0.93→0.95.1, openai 6.26→6.37, jiti 2.6→2.7,
@clack/prompts 1.1→1.3, koffi 2.9→2.16.2, get-east-asian-width 1.3→1.6,
undici 7.24→7.25, playwright 1.58→1.59, @google/gemini-cli-core 0.40→0.41
Align: daemon zod ^3.24.0 → ^4.4.3 (was already resolving hoisted v4)
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
2026-05-09 03:39:52 +02:00
|
|
|
"zod": "^4.4.3"
|
2026-05-05 14:31:16 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-08 02:52:05 +02:00
|
|
|
"@types/node": "^25.6.2",
|
2026-05-09 03:58:26 +02:00
|
|
|
"typescript": "^6.0.3"
|
2026-05-05 14:31:16 +02:00
|
|
|
},
|
|
|
|
|
"engines": {
|
2026-05-08 02:52:05 +02:00
|
|
|
"node": ">=26.1.0"
|
2026-05-05 14:31:16 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"!dist/**/*.test.*"
|
|
|
|
|
]
|
2026-03-27 13:40:25 -06:00
|
|
|
}
|