moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "@waggle/worker",
"version": "0.1.0",
"type": "module",
"exports": { ".": "./src/index.ts" },
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"test": "node ../../node_modules/vitest/vitest.mjs run --root ../.. --config vitest.config.ts packages/worker/tests",
"start": "node dist/index.js"
},
"dependencies": {
"@waggle/shared": "*",
"@waggle/core": "*",
"@waggle/agent": "*",
"bullmq": "^5.0.0",
"drizzle-orm": "^0.45.2",
"ioredis": "^5.4.0",
"postgres": "^3.4.0"
}
}