-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 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
{
"name": "swarms-x402",
"version": "0.1.0",
"mcpName": "io.swarmx/swarms-x402",
"description": "ElizaOS plugin for x402 HTTP payment protocol + Swarms multi-agent orchestration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js",
"default": "./dist/client/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js",
"default": "./dist/mcp/index.js"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/SolTwizzy/swarms-x402.git"
},
"homepage": "https://github.com/SolTwizzy/swarms-x402#readme",
"bugs": {
"url": "https://github.com/SolTwizzy/swarms-x402/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"test:smoke": "RUN_SMOKE=true vitest run --testPathPattern smoke",
"example": "tsx examples/basic-agent.ts",
"start:server": "bun run server.ts",
"demo:code-review": "bun run scripts/demo-code-review.ts",
"demo:research": "bun run scripts/demo-research.ts",
"mcp:manifest": "bun run src/mcp/manifest.ts",
"prepublishOnly": "bun run build"
},
"keywords": ["elizaos", "plugin", "x402", "swarms", "payments", "ai-agents", "crypto"],
"license": "MIT",
"dependencies": {
"@dexterai/x402": "^2.0.0",
"drizzle-orm": "^0.45.1",
"postgres": "^3.4.8",
"swarms-ts": "^0.1.0-alpha.10",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0",
"tsx": "^4.0.0",
"vitest": "^1.0.0"
},
"peerDependencies": {
"@elizaos/core": "2.0.0-alpha.32",
"viem": "^2.0.0"
},
"peerDependenciesMeta": {
"viem": {
"optional": true
}
}
}