revxl-devtools 1.0.1 → 1.0.2

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.
@@ -182,7 +182,7 @@
182
182
 
183
183
  <script>
184
184
  // Replace with your Stripe Payment Link URL
185
- const STRIPE_PAYMENT_LINK = '#';
185
+ const STRIPE_PAYMENT_LINK = 'https://buy.stripe.com/28E14pfy1g5X1nz9HHgbm0s';
186
186
 
187
187
  document.getElementById('checkout-btn').addEventListener('click', function (e) {
188
188
  if (STRIPE_PAYMENT_LINK && STRIPE_PAYMENT_LINK !== '#') {
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ export { registerTool, getToolByName, getAllTools };
9
9
  // ---------------------------------------------------------------------------
10
10
  // MCP Server
11
11
  // ---------------------------------------------------------------------------
12
- const PURCHASE_URL = "https://revxl-devtools.vercel.app";
12
+ const PURCHASE_URL = "https://buy.stripe.com/28E14pfy1g5X1nz9HHgbm0s";
13
13
  const server = new Server({ name: "@revxl/devtools", version: "1.0.0" }, { capabilities: { tools: {} } });
14
14
  // --- ListTools ------------------------------------------------------------
15
15
  server.setRequestHandler(ListToolsRequestSchema, async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revxl-devtools",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "17 developer tools for AI agents. JSON, JWT, regex, cron, secrets scanner. Free core + Pro ($7).",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -26,7 +26,7 @@ export type { ToolDefinition };
26
26
  // MCP Server
27
27
  // ---------------------------------------------------------------------------
28
28
 
29
- const PURCHASE_URL = "https://revxl-devtools.vercel.app";
29
+ const PURCHASE_URL = "https://buy.stripe.com/28E14pfy1g5X1nz9HHgbm0s";
30
30
 
31
31
  const server = new Server(
32
32
  { name: "@revxl/devtools", version: "1.0.0" },