@agenttech/tpay-cli 0.0.1
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/README.md +87 -0
- package/dist/index.js +64424 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agenttech/tpay-cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "T402 CLI for agent automation",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"tpay": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "bun run src/index.ts",
|
|
21
|
+
"build": "bun build src/index.ts --target node --outfile dist/index.js",
|
|
22
|
+
"build:binary": "bun build --compile src/index.ts --outfile tpay",
|
|
23
|
+
"prepublishOnly": "bun run build",
|
|
24
|
+
"test": "bun test",
|
|
25
|
+
"test:watch": "bun test --watch"
|
|
26
|
+
},
|
|
27
|
+
"author": "TianyiLi",
|
|
28
|
+
"license": "ISC",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/agent-tech/t402-cli.git"
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/agent-tech/t402-cli/issues"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/agent-tech/t402-cli#readme",
|
|
37
|
+
"keywords": [
|
|
38
|
+
"t402",
|
|
39
|
+
"x402",
|
|
40
|
+
"usdt",
|
|
41
|
+
"solana",
|
|
42
|
+
"payment",
|
|
43
|
+
"cli"
|
|
44
|
+
],
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"commander": "^12.1.0",
|
|
47
|
+
"@solana/keys": "^6.4.0",
|
|
48
|
+
"@solana/web3.js": "^1.98.0",
|
|
49
|
+
"@tetherto/wdk-wallet-solana": "1.0.0-beta.5"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/bun": "latest",
|
|
53
|
+
"@types/node": "latest",
|
|
54
|
+
"typescript": "^5"
|
|
55
|
+
}
|
|
56
|
+
}
|