-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "aegis-temporal-worker",
"version": "0.1.0",
"description": "AEGIS Temporal Worker - Dynamic workflow generation and execution",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"worker": "tsx src/worker.ts",
"server": "tsx src/server.ts",
"dev:all": "concurrently \"npm run dev:server\" \"npm run dev:worker\"",
"dev:server": "tsx watch src/server.ts",
"dev:worker": "tsx watch src/worker.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"temporal",
"workflow",
"aegis",
"agent",
"orchestration"
],
"author": "100monkeys.ai",
"license": "AGPL-3.0-only",
"dependencies": {
"@temporalio/activity": "^1.15.0",
"@temporalio/client": "^1.15.0",
"@temporalio/worker": "^1.15.0",
"@temporalio/workflow": "^1.15.0",
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"express": "^5.2.1",
"pg": "^8.18.0",
"handlebars": "^4.7.8",
"zod": "^4.3.6",
"dotenv": "^17.3.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/express": "^5.0.6",
"@types/node": "^25.3.0",
"@types/pg": "^8.16.0",
"concurrently": "^9.2.1",
"eslint": "^9.35.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
}
}