forked from Must-be-Ash/x402-agent-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.6 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
{
"name": "x402-agent",
"version": "0.2.1",
"description": "MCP server for autonomous x402 payments",
"main": "dist/index.js",
"type": "module",
"bin": {
"x402-agent": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js && chmod +x dist/cli/index.js",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol",
"x402",
"payments",
"micropayments",
"cdp",
"coinbase",
"base",
"usdc",
"ai-agent",
"autonomous",
"llm",
"web3",
"blockchain"
],
"author": "Must-be-Ash (https://twitter.com/must_be_ash)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Must-be-Ash/x402-agent.git"
},
"bugs": {
"url": "https://github.com/Must-be-Ash/x402-agent/issues"
},
"homepage": "https://github.com/Must-be-Ash/x402-agent#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"src/templates/**/*",
"config/**/*",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"viem": "^2.40.2",
"x402-fetch": "^0.7.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"commander": "^12.0.0",
"inquirer": "^9.2.0",
"chalk": "^5.3.0",
"ora": "^8.0.0"
}
}