@subly_fi/pay 0.6.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +98 -61
- package/dist/budget.js +2267 -0
- package/dist/cli.js +37 -20
- package/dist/deposit.js +1031 -183
- package/dist/doctor.js +188 -0
- package/dist/mcp-server.js +3404 -2415
- package/dist/pay.js +2764 -1873
- package/dist/setup-link.js +950 -104
- package/dist/vaults.js +129 -0
- package/dist/withdraw.js +950 -104
- package/package.json +25 -6
package/package.json
CHANGED
|
@@ -1,22 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subly_fi/pay",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Subly client: pay compatible standard x402 Solana USDC exact APIs from Kamino vault yield
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "Subly client: pay compatible standard x402 Solana USDC exact APIs from Kamino vault yield \u2014 the seller needs no Subly integration. Ships an MCP server and a one-shot pay/deposit CLI; non-custodial (signs locally with your own key).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"x402",
|
|
7
|
+
"solana",
|
|
8
|
+
"usdc",
|
|
9
|
+
"mcp",
|
|
10
|
+
"ai-agents",
|
|
11
|
+
"payments",
|
|
12
|
+
"kamino"
|
|
13
|
+
],
|
|
14
|
+
"author": "SublyFi",
|
|
5
15
|
"license": "MIT",
|
|
6
16
|
"type": "module",
|
|
7
17
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
18
|
+
"node": ">=24"
|
|
9
19
|
},
|
|
10
20
|
"bin": {
|
|
11
21
|
"pay": "dist/cli.js"
|
|
12
22
|
},
|
|
13
23
|
"files": [
|
|
14
24
|
"dist",
|
|
15
|
-
"README.md"
|
|
25
|
+
"README.md",
|
|
26
|
+
"LICENSE"
|
|
16
27
|
],
|
|
17
28
|
"scripts": {
|
|
18
29
|
"build": "node build.mjs",
|
|
19
|
-
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
30
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
31
|
+
"pack:check": "npm pack --dry-run --json",
|
|
32
|
+
"prepack": "npm run build",
|
|
33
|
+
"check": "npm run typecheck && npm run build && npm run pack:check"
|
|
20
34
|
},
|
|
21
35
|
"dependencies": {
|
|
22
36
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
@@ -35,8 +49,13 @@
|
|
|
35
49
|
"publishConfig": {
|
|
36
50
|
"access": "public"
|
|
37
51
|
},
|
|
52
|
+
"homepage": "https://github.com/SublyFi/subly-payment-protocol#readme",
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/SublyFi/subly-payment-protocol/issues"
|
|
55
|
+
},
|
|
38
56
|
"repository": {
|
|
39
57
|
"type": "git",
|
|
40
|
-
"url": "https://github.com/SublyFi/subly-payment-protocol"
|
|
58
|
+
"url": "git+https://github.com/SublyFi/subly-payment-protocol.git",
|
|
59
|
+
"directory": "packages/pay"
|
|
41
60
|
}
|
|
42
61
|
}
|