@subly_fi/pay 0.1.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/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@subly_fi/pay",
3
+ "version": "0.1.0",
4
+ "description": "Subly client: pay for x402 (subly-yield-exact) HTTP resources from Kamino vault yield. Ships an MCP server and a one-shot pay/deposit CLI; non-custodial (signs locally with your own key).",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=20"
9
+ },
10
+ "bin": {
11
+ "pay": "dist/cli.js"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "build": "node build.mjs"
19
+ },
20
+ "dependencies": {
21
+ "@modelcontextprotocol/sdk": "^1.29.0",
22
+ "@solana-program/address-lookup-table": "^0.7.0",
23
+ "@solana/kit": "^2.3.0",
24
+ "bs58": "^6.0.0",
25
+ "tweetnacl": "^1.0.3",
26
+ "zod": "^4.1.13"
27
+ },
28
+ "devDependencies": {
29
+ "esbuild": "^0.28.1"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/SublyFi/subly-payment-protocol"
37
+ }
38
+ }