-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.78 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
{
"name": "@prismshadow/agenthub",
"version": "0.4.7",
"description": "AgentHub is the LLM API Hub for the Agent era, built for high-precision autonomous agents.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./integration/tracer": "./dist/integration/tracer.js",
"./integration/playground": "./dist/integration/playground.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"start": "node dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"tracer": "tsx examples/tracerExample.ts",
"playground": "tsx examples/playgroundExample.ts"
},
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.26.4",
"@anthropic-ai/sdk": "^0.81.0",
"@google/genai": "^1.48.0",
"express": "^4.18.2",
"openai": "^6.33.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"gaxios": "^7.1.3",
"jest": "^30.2.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prism-Shadow/agenthub.git"
},
"keywords": [
"agent",
"llm",
"gemini",
"claude",
"gpt"
],
"author": "PrismShadow",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Prism-Shadow/agenthub/issues"
},
"homepage": "https://github.com/Prism-Shadow/agenthub#readme"
}