-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.9 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@stirrup/stirrup",
"version": "1.0.7",
"description": "The lightweight foundation for building agents in TypeScript",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./clients/openai": {
"types": "./dist/clients/openai-client.d.ts",
"import": "./dist/clients/openai-client.js"
},
"./clients/anthropic": {
"types": "./dist/clients/anthropic-client.d.ts",
"import": "./dist/clients/anthropic-client.js"
},
"./clients/vercel-ai": {
"types": "./dist/clients/vercel-ai-client.d.ts",
"import": "./dist/clients/vercel-ai-client.js"
},
"./clients/open-responses": {
"types": "./dist/clients/open-responses-client.d.ts",
"import": "./dist/clients/open-responses-client.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist',{ recursive:true, force:true });\" && tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"agent",
"llm",
"openai",
"anthropic",
"tools",
"framework",
"typescript"
],
"author": "Artificial Analysis, Inc.",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@types/cheerio": "^0.22.35",
"async-retry": "^1.3.3",
"axios": "^1.18.0",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"cheerio": "^1.2.0",
"cli-table3": "^0.6.5",
"dotenv": "^17.4.2",
"execa": "^9.4.0",
"ffmpeg-static": "^5.2.0",
"file-type": "^22.0.1",
"fluent-ffmpeg": "^2.1.3",
"openai": "^6.44.0",
"ora": "^9.4.0",
"pino": "^10.3.1",
"pino-pretty": "^13.0.0",
"sharp": "^0.35.2",
"turndown": "^7.2.4",
"zod": "^4.4.3"
},
"optionalDependencies": {
"@ai-sdk/anthropic": "^3.0.85",
"@ai-sdk/openai": "^3.0.73",
"@anthropic-ai/sdk": "^0.105.0",
"@e2b/code-interpreter": "^2.6.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/dockerode": "^4.0.1",
"ai": "^6.0.208",
"dockerode": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/async-retry": "^1.4.9",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^26.0.0",
"@types/turndown": "^5.0.5",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^10.5.0",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vitest": "^4.0.16"
}
}