-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.43 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
{
"name": "@aegis-protocol/mcp-server",
"version": "0.1.3",
"description": "MCP Server for the AEGIS Protocol — trustless escrow for AI agent transactions",
"mcpName": "io.github.im-sham/aegis-protocol",
"type": "module",
"main": "./dist/index.js",
"bin": {
"aegis-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "vitest run tests/config.test.ts tests/helpers/*.test.ts tests/tools/*.test.ts",
"test:e2e": "vitest run tests/e2e/mcp-e2e.test.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"dependencies": {
"@aegis-protocol/abis": "workspace:*",
"@aegis-protocol/sdk": "workspace:*",
"@aegis-protocol/types": "workspace:*",
"@modelcontextprotocol/sdk": "^1.29.0",
"viem": "^2.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^4.1.8"
},
"keywords": [
"mcp",
"model-context-protocol",
"aegis",
"escrow",
"ai-agents",
"erc-8004",
"base",
"usdc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/im-sham/aegis-protocol.git",
"directory": "mcp"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}