-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.2 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.2 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
{
"name": "thebird",
"version": "1.2.78",
"description": "Anthropic SDK to Gemini streaming bridge — drop-in proxy that translates Anthropic message format and tool calls to Google Gemini",
"scripts": {
"start": "node serve.js"
},
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.js",
"default": "./index.js"
}
},
"keywords": [
"anthropic",
"gemini",
"google",
"ai",
"streaming",
"proxy",
"bridge",
"tool-use",
"vision",
"multimodal",
"router",
"openai",
"deepseek",
"multi-provider"
],
"author": "AnEntrypoint",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AnEntrypoint/thebird.git"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.88.0",
"@google/genai": "^1.0.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.2",
"@webcontainer/api": "^1.6.4",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"esbuild": "^0.28.0",
"htm": "^3.1.1",
"tailwindcss": "^4.2.2",
"webjsx": "^0.0.73"
}
}