-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "seneschal-data-api",
"version": "0.1.0",
"description": "Public REST + MCP server exposing Seneschal's liquidation, builder, and oracle telemetry.",
"type": "module",
"private": true,
"bin": {
"seneschal-rest": "bin/rest.mjs",
"seneschal-mcp": "bin/mcp.mjs"
},
"scripts": {
"start:rest": "node bin/rest.mjs",
"start:mcp": "node bin/mcp.mjs",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"bootstrap:x402": "node --env-file=../../.env scripts/x402-self-bootstrap.mjs"
},
"dependencies": {
"@coinbase/x402": "^2.1.0",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@x402/core": "^2.12.0",
"@x402/evm": "^2.12.0",
"@x402/extensions": "^2.12.0",
"@x402/fastify": "^2.12.0",
"@x402/paywall": "^2.12.0",
"better-sqlite3": "^12.10.0",
"fastify": "^5.8.5",
"payments-gateway": "github:Rotwang9000/payments-gateway#c136b53",
"viewkey-watch": "github:Rotwang9000/viewkey-watch#14b2c9c",
"zod": "^4.4.3"
},
"devDependencies": {
"@jest/globals": "^30.1.2",
"@x402/fetch": "^2.14.0",
"jest": "^30.1.3",
"supertest": "^7.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}