-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 979 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
40
{
"name": "@paynodelabs/paynode-402-cli",
"version": "2.6.0",
"description": "The official command-line interface for the PayNode protocol. Designed for AI Agents to execute stateless micro-payments via HTTP 402.",
"type": "module",
"main": "./index.ts",
"bin": {
"paynode-402": "index.ts"
},
"keywords": [
"paynode",
"x402",
"payment-required",
"web3",
"bun",
"cli",
"agent"
],
"author": "PayNode Labs",
"license": "MIT",
"scripts": {
"test": "bun test",
"build": "echo 'No build required for Bun' && exit 0"
},
"dependencies": {
"@paynodelabs/sdk-js": "^2.4.0",
"cac": "7.0.0"
},
"devDependencies": {
"bun-types": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PayNodeLabs/paynode-402-cli.git"
},
"bugs": {
"url": "https://github.com/PayNodeLabs/paynode-402-cli/issues"
},
"homepage": "https://github.com/PayNodeLabs/paynode-402-cli#readme"
}