singularity-forge/packages/daemon/package.json
2026-04-15 13:38:15 +02:00

48 lines
1 KiB
JSON

{
"name": "@singularity-forge/daemon",
"version": "2.74.0",
"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"
},
"scripts": {
"build": "tsc",
"test": "node --test dist/daemon.test.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@singularity-forge/rpc-client": "^2.74.0",
"discord.js": "^14.25.1",
"yaml": "^2.8.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^24.12.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"!dist/**/*.test.*"
]
}