-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.45 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": "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 && node tests/orchestrator.budget.test.js && node tests/premium-endpoints.integration.test.js",
"test:validation": "node tests/api.validation.test.js",
"smoke": "node tests/smoke.test.js",
"lint": "eslint . --ext .js,.mjs,.cjs",
"lint:fix": "eslint . --ext .js,.mjs,.cjs --fix",
"lint:md": "markdownlint-cli2",
"lint:md:fix": "markdownlint-cli2 --fix",
"format": "prettier --write \"**/*.{js,md,html,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{js,md,html,yaml,yml}\"",
"test:parser": "node src/agents/settlement-header.test.js",
"test:budget": "node tests/orchestrator.budget.test.js",
"test:premium": "node tests/premium-endpoints.integration.test.js",
"test:demo": "node src/demo.js",
"prepare": "husky"
},
"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",
"playwright": "^1.59.1"
},
"devDependencies": {
"eslint": "^10.4.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.1.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.23.2",
"prettier": "^3.8.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
],
"*.md": [
"prettier --write",
"markdownlint-cli2 --fix"
]
}
}