-
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) · 952 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 952 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
32
33
34
35
36
37
38
39
{
"name": "@fangorn-network/facilitator",
"version": "2026.04.24",
"description": "The x402f facilitator",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"start": "npx tsx --env-file=.env src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fangorn-network/sdk": "catalog:",
"@semaphore-protocol/identity": "^4.14.2",
"@x402/core": "catalog:",
"@x402/evm": "catalog:",
"@x402/fetch": "catalog:",
"express": "catalog:",
"morgan": "catalog:",
"viem": "catalog:"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6"
},
"publishConfig": {
"access": "public"
}
}