-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.72 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.72 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
{
"name": "@wardenprotocol/agent-kit",
"version": "0.5.0",
"description": "AgentKit SDK - Build AI agents with A2A and LangGraph protocol support",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./a2a": {
"import": "./dist/a2a/index.js",
"types": "./dist/a2a/index.d.ts"
},
"./langgraph": {
"import": "./dist/langgraph/index.js",
"types": "./dist/langgraph/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run clean && pnpm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"langgraph",
"langchain",
"a2a",
"agent2agent",
"ai",
"agents",
"protocol",
"interoperability",
"sdk"
],
"author": "Warden Protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/warden-protocol/agent-kit.git"
},
"bugs": {
"url": "https://github.com/warden-protocol/agent-kit/issues"
},
"homepage": "https://github.com/warden-protocol/agent-kit#readme",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@langchain/langgraph-sdk": "^1.0.0"
},
"dependencies": {},
"devDependencies": {
"@langchain/langgraph-sdk": "^1.4.5",
"@types/node": "^20.0.0",
"typescript": "^5.8.0",
"vitest": "^3.0.0",
"prettier": "^3.5.0"
},
"packageManager": "pnpm@10.16.1"
}