ringup 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.
Files changed (2) hide show
  1. package/cli.js +4 -0
  2. package/package.json +9 -0
package/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log("Ringup CLI — coming soon.");
3
+ console.log("Add Ringup to your voice agent today: https://ringup.dev/#integrate");
4
+ console.log("MCP server: https://mcp.ringup.dev/mcp");
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "ringup",
3
+ "version": "0.0.1",
4
+ "description": "Ringup — the payments layer for AI voice agents. CLI coming soon; see https://ringup.dev",
5
+ "bin": { "ringup": "cli.js" },
6
+ "homepage": "https://ringup.dev",
7
+ "license": "UNLICENSED",
8
+ "files": ["cli.js"]
9
+ }