-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "qn-x402-example",
"version": "1.0.0",
"description": "End-to-end examples demonstrating @quicknode/x402 with two payment models: pay-per-request and credit drawdown (SIWX auth)",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"start": "tsx cli.ts",
"start:legacy": "tsx bootstrap.ts",
"start:jsonrpc": "tsx jsonrpc.ts",
"start:grpc": "tsx grpc.ts",
"start:rest": "tsx rest.ts",
"start:ws": "tsx websocket.ts",
"start:nanopayment": "tsx nanopayment.ts",
"generate": "buf generate",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@connectrpc/connect": "^2.1.1",
"@connectrpc/connect-web": "^2.1.1",
"@inquirer/prompts": "^8.3.0",
"@quicknode/x402": "^0.1.3",
"bs58": "^4.0.1",
"dotenv": "^16.6.1",
"tweetnacl": "^1.0.3",
"viem": "^2.44.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@bufbuild/buf": "^1.65.0",
"@bufbuild/protoc-gen-es": "^2.11.0",
"@types/bs58": "^4.0.4",
"@types/node": "^22.19.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}