Bumps version across the workspace (root + 10 @singularity-forge/*
packages) and lands the pending dependency refresh that had been
sitting uncommitted:
@anthropic-ai/sdk 0.95.1 → 0.96.0
@anthropic-ai/vertex-sdk 0.14.4 → 0.16.0
@google/genai 2.0 → 2.3
@logtape/{file,logtape,pretty,redaction} 2.0.7 → 2.0.9
@smithy/node-http-handler 4.7.0 → 4.7.3
@clack/prompts 1.3 → 1.4
@types/mime-types 2.1 → 3.0
Inter-package refs in packages/{daemon,ai}/package.json bumped to
^2.75.4 so the workspace stays self-consistent. package-lock.json
regenerated via `npm install --package-lock-only --legacy-peer-deps`.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
49 lines
1 KiB
JSON
49 lines
1 KiB
JSON
{
|
|
"name": "@singularity-forge/daemon",
|
|
"version": "2.75.4",
|
|
"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": {
|
|
"build": "tsgo",
|
|
"test": "vitest run packages/daemon/src --root ../.. --config vitest.config.ts"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.96.0",
|
|
"@singularity-forge/rpc-client": "^2.75.4",
|
|
"discord.js": "^14.25.1",
|
|
"yaml": "^2.9.0",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.2",
|
|
"typescript": "^6.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=26.1.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/*.test.*"
|
|
]
|
|
}
|