-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "llm-agent-runtime-ts",
"version": "1.0.0",
"description": "Production-style TypeScript LLM agent runtime with approvals, resilience, and observability",
"main": "dist/index.js",
"engines": {
"node": ">=22.15.1"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest watch",
"demo": "tsx src/demo.ts",
"lab": "tsx src/prompt-lab/cli.ts"
},
"keywords": [
"agent",
"llm",
"openai",
"typescript"
],
"license": "MIT",
"dependencies": {
"@google/genai": "^1.28.0",
"js-yaml": "^4.1.1",
"openai": "^6.27.0",
"zod": "3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.6.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^0.34.6"
}
}