-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.96 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
{
"name": "fourmis-agents-sdk",
"version": "0.5.0",
"description": "Multi-provider AI agent SDK with direct API access and in-process tool execution",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./auth/openai": {
"types": "./dist/auth/openai-oauth.d.ts",
"import": "./dist/auth/openai-oauth.js"
},
"./auth/gemini": {
"types": "./dist/auth/gemini-oauth.d.ts",
"import": "./dist/auth/gemini-oauth.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"license": "MIT",
"author": "jcanizalez",
"repository": {
"type": "git",
"url": "https://github.com/jcanizalez/fourmis-agent-sdk.git"
},
"bugs": {
"url": "https://github.com/jcanizalez/fourmis-agent-sdk/issues"
},
"homepage": "https://github.com/jcanizalez/fourmis-agent-sdk#readme",
"keywords": [
"ai",
"agent",
"sdk",
"llm",
"anthropic",
"openai",
"mcp",
"bun",
"multi-provider"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"build": "bun run build:js && bun run build:types",
"build:js": "bun scripts/build.ts",
"build:types": "tsc --project tsconfig.build.json && bun scripts/fix-dts-extensions.ts",
"clean": "rm -rf dist",
"prebuild": "bun run clean",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:tools": "bun test tests/tools/",
"test:integration": "bun test tests/integration.test.ts",
"test:compat": "bun run tests/compat/run-compat.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@google/genai": "^1.40.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"openai": "^6.21.0",
"yaml": "^2.8.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.38",
"bun-types": "latest",
"typescript": "^5.9.3"
}
}