forked from AnkanMisra/MicroAI-Paygate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 843 Bytes
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
{
"name": "microai-paygate",
"version": "1.0.0",
"description": "x402-powered API monetization layer",
"main": "src/index.ts",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"agent": "bun run agent/bot.ts",
"dev:all": "concurrently \"bun run dev\" \"sleep 2 && bun run agent\"",
"stack": "concurrently -n \"VERIFIER,GATEWAY,WEB\" -c \"red,cyan,green\" \"cd verifier && cargo run\" \"cd gateway && go run main.go\" \"cd web && bun run dev\"",
"test:e2e": "./run_e2e.sh"
},
"dependencies": {
"cors": "^2.8.5",
"ethers": "^6.10.0",
"express": "^4.18.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/uuid": "^9.0.8",
"bun-types": "latest",
"concurrently": "^9.2.1"
}
}