-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.39 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@springmint/x402-payment",
"version": "1.0.4",
"description": "x402 payment SDK - Add x402 pay-per-use capability to your AI agent skills and Node.js applications",
"license": "MIT",
"type": "module",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"exports": {
".": {
"import": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts"
}
},
"bin": "dist/cli/x402_invoke.js",
"files": [
"dist/lib",
"dist/cli",
"SKILL.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && ncc build src/cli.ts -o dist/cli && mv dist/cli/index.js dist/cli/x402_invoke.js",
"build:lib": "tsc",
"build:cli": "ncc build src/cli.ts -o dist/cli && mv dist/cli/index.js dist/cli/x402_invoke.js",
"start": "node dist/cli/x402_invoke.js"
},
"keywords": [
"x402",
"payment",
"ai-agent",
"skill",
"sdk",
"usdt",
"usdc",
"tron",
"evm",
"bsc",
"402",
"pay-per-use"
],
"repository": {
"type": "git",
"url": "https://github.com/springmint/x402-payment.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@springmint/x402": "^0.1.3",
"tronweb": "^6.0.0",
"viem": "^2.46.3"
},
"packageManager": "yarn@4.13.0"
}