-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.64 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.64 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
{
"name": "tri-protocol",
"version": "1.0.0",
"description": "A2A Protocol (Communication) + LangGraph (Orchestration) + MCP (Tools & Resources) = 🔥 TRI-PROTOCOL FRAMEWORK 🔥",
"private": true,
"workspaces": [
"logger",
"core",
"protocols",
"runtime",
"sdk",
"cli"
],
"main": "index.js",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna clean && rm -rf dist *.tsbuildinfo",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:a2a": "jest tests/unit/protocols/a2a/A2AProtocol.test.ts",
"test:discovery": "jest tests/unit/protocols/a2a/A2AProtocol.discovery.test.ts",
"test:server": "jest tests/unit/protocols/a2a/A2AAgentServer.test.ts",
"test:a2a:all": "jest tests/unit/protocols/a2a/*.test.ts",
"test:a2a:coverage": "jest tests/unit/protocols/a2a/*.test.ts --coverage",
"test:a2a:watch": "jest tests/unit/protocols/a2a/*.test.ts --watch",
"test:mcp": "ts-node scripts/test-mcp.ts",
"test:mcp:real": "ts-node scripts/test-mcp.ts --real",
"test:mcp:all": "jest tests/unit/protocols/mcp/*.test.ts",
"test:integration:all": "jest tests/integration/*.test.ts",
"test:langgraph:all": "jest tests/unit/protocols/langgraph/*.test.ts",
"test:protocols:all": "jest tests/unit/protocols/**/*.test.ts",
"test:core:all": "jest tests/unit/core/*.test.ts",
"test:sdk": "jest tests/unit/sdk --config tests/unit/sdk/jest.config.js",
"test:sdk:coverage": "jest tests/unit/sdk --config tests/unit/sdk/jest.config.js --coverage",
"test:sdk:watch": "jest tests/unit/sdk --config tests/unit/sdk/jest.config.js --watch",
"test:sdk:run": "ts-node tests/unit/sdk/run-tests.ts",
"lint": "lerna run lint --stream",
"dev": "lerna run dev ",
"version": "lerna version ",
"format": "prettier --write \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"services:start": "./scripts/start-services.sh",
"services:stop": "docker-compose down",
"services:logs": "docker-compose logs -f",
"services:clean": "docker-compose down -v",
"example:persistence": "ts-node examples/persistence-example.ts",
"example:embeddings": "ts-node examples/persistence-with-embeddings.ts",
"db:migrate": "ts-node scripts/run-migrations.ts"
},
"keywords": [
"autonomous",
"agents",
"llm",
"ai",
"typescript",
"agentic"
],
"author": "by YmC @Tri-Protocol",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bonjour": "^3.5.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^24.2.1",
"@types/pg": "^8.15.5",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"axios": "^1.6.8",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"eslint": "^8.55.0",
"eventemitter3": "^5.0.1",
"express": "^5.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.0",
"lerna": "^8.2.3",
"nodemon": "^3.1.0",
"prettier": "^3.1.0",
"socket.io": "^4.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"@langchain/core": "^0.3.75",
"@langchain/langgraph": "^0.4.9",
"@modelcontextprotocol/sdk": "^1.17.5",
"@qdrant/js-client-rest": "^1.15.1",
"bonjour": "^3.5.0",
"ioredis": "^5.7.0",
"mongodb": "^6.19.0",
"pg": "^8.16.3",
"pgvector": "^0.2.1"
}
}