-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
{
"name": "acptoapi",
"version": "1.0.115",
"description": "Anthropic SDK to multi-provider streaming bridge — converts Anthropic message format and tool calls to Gemini, OpenAI-compatible APIs",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"acptoapi": "./bin/acptoapi.js",
"acptoapi-tui": "./bin/acptoapi-tui.js"
},
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.js",
"default": "./index.js"
},
"./lib/openai-brands": "./lib/openai-brands.js",
"./lib/model-prober": "./lib/model-prober.js",
"./lib/acp-client": "./lib/acp-client.js",
"./lib/sampler": "./lib/sampler.js",
"./lib/queues": "./lib/queues.js",
"./lib/matrix": "./lib/matrix.js",
"./lib/chain": "./lib/chain.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/acptoapi.git"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.21.1",
"@anthropic-ai/sdk": "^0.95.1",
"@google/genai": "^1.0.0",
"dotenv": "^16.4.5",
"xstate": "^5.30.0"
},
"engines": {
"node": ">=18"
}
}