-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 778 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 778 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
28
29
30
31
{
"name": "feed402",
"version": "0.1.0-alpha.1",
"description": "Reference implementation of the feed402 protocol — paid data endpoints over x402 with mandatory citation envelopes.",
"license": "MIT",
"author": "Gianangelo Dichio",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"dev": "tsx server.ts",
"start": "node dist/server.js",
"agent": "tsx agent.ts",
"demo": "bash demo.sh",
"typecheck": "tsc --noEmit",
"build-index": "tsx build-index.ts"
},
"dependencies": {
"hono": "^4.6.0",
"@hono/node-server": "^1.13.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20"
}
}