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
23 lines (23 loc) · 869 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "microai-paygate",
"version": "1.0.0",
"private": true,
"description": "x402-style API monetization layer",
"scripts": {
"stack": "concurrently -n \"VERIFIER,GATEWAY,WEB\" -c \"red,cyan,green\" \"cd verifier && cargo run\" \"cd gateway && RECEIPT_STORE=${RECEIPT_STORE:-memory} CACHE_ENABLED=${CACHE_ENABLED:-false} go run .\" \"cd web && bun run dev\"",
"test:unit": "cd gateway && go test ./... && cd ../verifier && cargo test",
"test:go": "cd gateway && go test ./...",
"test:rust": "cd verifier && cargo test",
"test:sdk": "cd sdk/typescript && bun run test",
"typecheck:sdk": "cd sdk/typescript && bun run typecheck",
"test:e2e": "./run_e2e.sh",
"test:all": "./run_e2e.sh"
},
"dependencies": {
"ethers": "^6.10.0"
},
"devDependencies": {
"bun-types": "latest",
"concurrently": "^9.2.1"
}
}