@moneydevkit/replit 0.0.9 → 0.0.10

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/README.md +0 -1
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -11,7 +11,6 @@ Money Dev Kit checkout package tuned for Replit workspaces: Vite + React on the
11
11
  3. **Add required secrets** to `.env` (or Replit Secrets):
12
12
  ```env
13
13
  MDK_ACCESS_TOKEN=your_api_key_here
14
- MDK_WEBHOOK_SECRET=your_webhook_key_here
15
14
  MDK_MNEMONIC=your_mnemonic_here
16
15
  ```
17
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moneydevkit/replit",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Money Dev Kit checkout package for Replit (Vite + Express).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -35,14 +35,15 @@
35
35
  "react-dom": "^18 || ^19"
36
36
  },
37
37
  "dependencies": {
38
- "@moneydevkit/core": "0.0.11"
38
+ "@moneydevkit/core": "0.0.12"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/express": "^4.17.21",
42
42
  "@types/node": "^20.10.5",
43
43
  "@types/react": "^19.0.1",
44
44
  "@types/react-dom": "^19.0.2",
45
+ "express": "^5.2.1",
45
46
  "typescript": "^5.6.3"
46
47
  },
47
48
  "module": "./dist/index.js"
48
- }
49
+ }