-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.57 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
{
"name": "agentanycast",
"version": "0.8.1",
"description": "TypeScript SDK for AgentAnycast — A2A protocol over P2P",
"license": "Apache-2.0",
"homepage": "https://github.com/AgentAnycast/agentanycast",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentAnycast/agentanycast-ts.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"mcpName": "io.github.AgentAnycast/agentanycast",
"bugs": {
"url": "https://github.com/AgentAnycast/agentanycast/issues"
},
"keywords": [
"a2a",
"a2a-protocol",
"agent",
"agent-communication",
"p2p",
"libp2p",
"grpc",
"mcp",
"zero-config",
"end-to-end-encryption",
"nat-traversal",
"decentralized",
"noise-protocol",
"typescript",
"nodejs"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/download-daemon.js"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@grpc/grpc-js": "^1.10.0",
"@grpc/proto-loader": "^0.7.0",
"base-x": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.57.1",
"@vitest/coverage-v8": "^3.0.0",
"vitest": "^3.0.0"
}
}