-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.63 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
78
{
"name": "@atriumind/server",
"version": "1.0.0",
"type": "module",
"description": "A marketplace where humans and AI agents publish and trade digital resources via HTTP 402 payments on Stellar",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.build.json --skipLibCheck || true",
"typecheck": "tsc --noEmit -p tsconfig.build.json",
"start": "node dist/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"generate-wallet": "tsx scripts/generate-wallet.ts",
"setup-usdc": "tsx scripts/setup-usdc.ts",
"e2e": "tsx scripts/e2e-test.ts",
"reconcile": "tsx scripts/reconcile.ts",
"seed": "tsx scripts/seed.ts",
"test": "vitest run",
"postinstall": "node -e \"const fs=require(\"fs\");fs.mkdirSync(\"node_modules/@atriumind\",{recursive:true});if(!fs.existsSync(\"node_modules/@atriumind/registry-client\"))fs.symlinkSync(process.cwd()+\"/packages/registry-client\",\"node_modules/@atriumind/registry-client\")\" || true"
},
"keywords": [
"x402",
"stellar",
"marketplace",
"ai-agents",
"micropayments"
],
"author": "mano.dev",
"license": "MIT",
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.217.0",
"@opentelemetry/instrumentation-express": "^0.57.0",
"@opentelemetry/instrumentation-http": "^0.217.0",
"@opentelemetry/instrumentation-undici": "^0.21.0",
"@opentelemetry/resources": "^2.8.0",
"@opentelemetry/sdk-node": "^0.217.0",
"@opentelemetry/semantic-conventions": "^1.28.0",
"@paralleldrive/cuid2": "^3.3.0",
"@sentry/node": "^10.62.0",
"@stellar/stellar-sdk": "^15.0.1",
"@supabase/supabase-js": "^2.101.1",
"@x402/core": "^2.9.0",
"@x402/express": "^2.9.0",
"@x402/fetch": "^2.9.0",
"@x402/stellar": "^2.9.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.4.1",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"helmet": "^8.2.0",
"multer": "^2.2.0",
"openai": "^6.33.0",
"pino": "^9.6.0",
"postgres": "^3.4.9",
"redis": "^4.7.1",
"prom-client": "^15.1.3",
"sharp": "^0.35.2",
"x402-stellar": "^0.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/supertest": "^6.0.2",
"drizzle-kit": "^0.31.10",
"supertest": "^6.3.3",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.7"
}
}