29 lines
819 B
JSON
29 lines
819 B
JSON
{
|
|
"name": "@waggle/worker",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc --build --force && esbuild src/index.ts --bundle --platform=node --format=esm --packages=external --sourcemap --outfile=dist/index.js",
|
|
"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"
|
|
}
|
|
}
|