-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "stellarmind",
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"dev": "node src/server.js",
"start": "node src/server.js",
"demo": "node src/demo.js",
"preflight": "node src/demo-preflight.js",
"record:video": "node src/record-demo-video.js",
"voiceover": "node src/generate-demo-voiceover.js",
"record:narrated": "node src/render-narrated-demo.js",
"setup": "node src/setup-wallets.js",
"setup:usdc": "node src/setup-usdc.js",
"test": "node src/agents/settlement-header.test.js",
"test:parser": "node src/agents/settlement-header.test.js",
"test:demo": "node src/demo.js"
},
"keywords": [
"stellar",
"x402",
"ai-agents",
"claude",
"micropayments",
"marketplace"
],
"author": "StellarMind Team",
"license": "MIT",
"description": "AI Agent Marketplace with x402 Micropayments on Stellar — Claude-powered agents that buy, sell, and earn autonomously",
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.98.0",
"@stellar/stellar-sdk": "^15.0.1",
"@x402/core": "^2.9.0",
"@x402/express": "^2.9.0",
"@x402/fetch": "^2.13.0",
"@x402/stellar": "^2.9.0",
"cors": "^2.8.6",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"puppeteer": "^19.0.0",
"puppeteer-screen-recorder": "^3.0.6"
},
"devDependencies": {
"playwright": "^1.59.1"
}
}