moneyswitch 0.5.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 +202 -0
- package/README.md +63 -0
- package/dist/cli.js +523 -0
- package/dist/desktop.js +2699 -0
- package/dist/mcp.js +21535 -0
- package/dist/sell.js +34034 -0
- package/dist/ui/app.css +1 -0
- package/dist/ui/app.js +8 -0
- package/dist/ui/index.html +14 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "moneyswitch",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Give your AI an API key for money. Client CLI + stdio MCP server for MoneySwitch (x402 + USDC on Monad).",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"moneyswitch": "./dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/dongsheng123132/moneyswitch.git",
|
|
21
|
+
"directory": "apps/cli"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/dongsheng123132/moneyswitch#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/dongsheng123132/moneyswitch/issues"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"x402",
|
|
29
|
+
"usdc",
|
|
30
|
+
"monad",
|
|
31
|
+
"ai-agent",
|
|
32
|
+
"mcp",
|
|
33
|
+
"api-key",
|
|
34
|
+
"openai",
|
|
35
|
+
"newapi"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "node build.mjs",
|
|
39
|
+
"test": "vitest run test/unit",
|
|
40
|
+
"prepack": "node build.mjs"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@moneyswitch/mcp": "workspace:*",
|
|
44
|
+
"@moneyswitch/tollbooth": "workspace:*",
|
|
45
|
+
"@types/express": "5.0.3",
|
|
46
|
+
"@types/node": "22.10.5",
|
|
47
|
+
"@types/react": "18.3.31",
|
|
48
|
+
"@types/react-dom": "^18.3.7",
|
|
49
|
+
"@x402/core": "2.27.0",
|
|
50
|
+
"@x402/evm": "2.27.0",
|
|
51
|
+
"@x402/express": "2.27.0",
|
|
52
|
+
"esbuild": "0.28.2",
|
|
53
|
+
"express": "5.2.1",
|
|
54
|
+
"moneyswitch-connect": "workspace:*",
|
|
55
|
+
"react": "18.3.1",
|
|
56
|
+
"react-dom": "18.3.1",
|
|
57
|
+
"smol-toml": "^1.9.0",
|
|
58
|
+
"typescript": "5.7.3",
|
|
59
|
+
"vitest": "5.0.2"
|
|
60
|
+
}
|
|
61
|
+
}
|