-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.12 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": "agentdock",
"version": "0.1.0",
"description": "Reusable TypeScript agent infrastructure for AgentDock applications",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Muhammad-Zain01/agentdock.git"
},
"homepage": "https://github.com/Muhammad-Zain01/agentdock#readme",
"bugs": {
"url": "https://github.com/Muhammad-Zain01/agentdock/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./agent": {
"types": "./dist/agent/index.d.ts",
"import": "./dist/agent/index.js"
},
"./tools": {
"types": "./dist/tools/index.d.ts",
"import": "./dist/tools/index.js"
},
"./providers": {
"types": "./dist/providers/index.d.ts",
"import": "./dist/providers/index.js"
},
"./providers/openrouter": {
"types": "./dist/providers/openrouter.d.ts",
"import": "./dist/providers/openrouter.js"
},
"./providers/ollama": {
"types": "./dist/providers/ollama.d.ts",
"import": "./dist/providers/ollama.js"
},
"./providers/gateway": {
"types": "./dist/providers/gateway.d.ts",
"import": "./dist/providers/gateway.js"
},
"./providers/openai": {
"types": "./dist/providers/openai.d.ts",
"import": "./dist/providers/openai.js"
},
"./providers/anthropic": {
"types": "./dist/providers/anthropic.d.ts",
"import": "./dist/providers/anthropic.js"
},
"./providers/google": {
"types": "./dist/providers/google.d.ts",
"import": "./dist/providers/google.js"
},
"./providers/xai": {
"types": "./dist/providers/xai.d.ts",
"import": "./dist/providers/xai.js"
},
"./providers/azure": {
"types": "./dist/providers/azure.d.ts",
"import": "./dist/providers/azure.js"
},
"./providers/bedrock": {
"types": "./dist/providers/bedrock.d.ts",
"import": "./dist/providers/bedrock.js"
},
"./providers/factory": {
"types": "./dist/providers/factory.d.ts",
"import": "./dist/providers/factory.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:unit": "vitest run test/unit",
"test": "vitest run",
"test:watch": "vitest",
"pack:artifact": "yarn pack --filename agentdock.tgz",
"prepack": "yarn clean && yarn build",
"prepare": "yarn build",
"clean": "rm -rf dist"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^5.0.66",
"@ai-sdk/anthropic": "^4.0.44",
"@ai-sdk/azure": "^4.0.52",
"@ai-sdk/google": "^4.0.55",
"@ai-sdk/openai": "^4.0.50",
"@ai-sdk/xai": "^4.0.48",
"@openrouter/ai-sdk-provider": "^3.0.0",
"ai": "^7.0.66",
"ai-sdk-ollama": "^4.0.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^26.1.2",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
},
"engines": {
"node": ">=20"
},
"license": "MIT"
}