-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.2 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": "facilitator",
"version": "0.5.0",
"private": true,
"type": "module",
"description": "Self-hosted x402 payment facilitator server — verifies and settles any ERC-20 token (USDT, DAI, etc.)",
"repository": {
"type": "git",
"url": "https://github.com/melonask/facilitator"
},
"homepage": "https://github.com/melonask/facilitator#readme",
"bugs": {
"url": "https://github.com/melonask/facilitator/issues"
},
"license": "MIT",
"author": "melonask",
"workspaces": [
"packages/contracts",
"packages/demo",
"packages/dash",
"packages/eip7702",
"packages/server"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "node --import tsx --test packages/*/test/*.test.ts",
"test:contracts": "cd packages/contracts && forge test -vv",
"build:contracts": "cd packages/contracts && forge build",
"typecheck": "npm run typecheck --workspaces",
"clean": "rm -rf node_modules package-lock.json && npm run clean --workspaces",
"demo": "node packages/demo/dist/bin/demo.js",
"dash": "node packages/dash/bin/dash.js"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}