-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"name": "agent-loop",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "src/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "npm run build && node --env-file=.env dist/src/index.js",
"start:prod": "node --env-file=.env dist/src/index.js",
"cli": "npm run build && node dist/src/cli.js",
"install-global": "npm run build && npm install -g .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.0",
"@ai-sdk/google": "^2.0.0",
"@ai-sdk/openai": "^2.0.0",
"@clack/prompts": "^0.8.0",
"ai": "^5.0.0",
"ai-sdk-ollama": "^1.0.0",
"commander": "^12.0.0",
"diff": "^8.0.2",
"execa": "^9.6.0",
"fast-glob": "^3.3.3",
"ts-morph": "^27.0.2",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/node": "^24.7.1",
"@vitest/ui": "^3.2.4",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.55.0",
"@opentelemetry/exporter-prometheus": "^0.55.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.55.0",
"@opentelemetry/instrumentation-http": "^0.55.0",
"@opentelemetry/instrumentation-undici": "^0.55.0",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-metrics": "^1.30.1",
"@opentelemetry/sdk-node": "^0.55.0",
"@opentelemetry/semantic-conventions": "^1.37.0"
},
"bin": {
"agent-loop": "./dist/src/cli.js"
},
"keywords": [
"ai",
"agent",
"coding",
"cli",
"openai"
],
"author": "",
"license": "ISC"
}