@moneydevkit/nextjs 0.10.0-beta.1 → 0.10.0-beta.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.
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moneydevkit/nextjs",
|
|
3
|
-
"version": "0.10.0-beta.
|
|
3
|
+
"version": "0.10.0-beta.2",
|
|
4
4
|
"title": "@moneydevkit/nextjs",
|
|
5
5
|
"description": "moneydevkit checkout components for Next.js.",
|
|
6
6
|
"repository": {
|
|
@@ -39,15 +39,6 @@
|
|
|
39
39
|
"files": [
|
|
40
40
|
"dist"
|
|
41
41
|
],
|
|
42
|
-
"scripts": {
|
|
43
|
-
"prebuild": "npm --prefix ../core run build",
|
|
44
|
-
"build": "rm -rf dist && tsc -p tsconfig.json && npm run copy-css",
|
|
45
|
-
"copy-css": "node ../core/scripts/copy-styles.mjs dist/mdk-styles.css",
|
|
46
|
-
"clean": "rm -rf dist",
|
|
47
|
-
"typecheck": "tsc --noEmit",
|
|
48
|
-
"test": "npm run build && node --test --experimental-loader ./tests/test-loader.mjs tests/route.test.js",
|
|
49
|
-
"pack:local": "npm pack"
|
|
50
|
-
},
|
|
51
42
|
"peerDependencies": {
|
|
52
43
|
"next": "^15 || ^16",
|
|
53
44
|
"react": "^18 || ^19",
|
|
@@ -55,9 +46,7 @@
|
|
|
55
46
|
},
|
|
56
47
|
"dependencies": {
|
|
57
48
|
"@hookform/resolvers": "^5.0.1",
|
|
58
|
-
"@moneydevkit/
|
|
59
|
-
"@moneydevkit/core": "0.10.0-beta.1",
|
|
60
|
-
"@moneydevkit/lightning-js": "0.1.66",
|
|
49
|
+
"@moneydevkit/lightning-js": "0.1.68",
|
|
61
50
|
"@orpc/client": "1.3.0",
|
|
62
51
|
"@orpc/contract": "1.3.0",
|
|
63
52
|
"@radix-ui/react-collapsible": "^1.1.11",
|
|
@@ -73,7 +62,9 @@
|
|
|
73
62
|
"react-hook-form": "^7.56.4",
|
|
74
63
|
"tailwind-merge": "^3.3.0",
|
|
75
64
|
"vaul": "^1.1.2",
|
|
76
|
-
"zod": "^3.25.42"
|
|
65
|
+
"zod": "^3.25.42",
|
|
66
|
+
"@moneydevkit/api-contract": "0.1.21",
|
|
67
|
+
"@moneydevkit/core": "0.10.0-beta.2"
|
|
77
68
|
},
|
|
78
69
|
"devDependencies": {
|
|
79
70
|
"@types/node": "^20.10.5",
|
|
@@ -81,5 +72,14 @@
|
|
|
81
72
|
"@types/react-dom": "^19.0.2",
|
|
82
73
|
"typescript": "^5.6.3"
|
|
83
74
|
},
|
|
84
|
-
"module": "./dist/index.js"
|
|
85
|
-
|
|
75
|
+
"module": "./dist/index.js",
|
|
76
|
+
"scripts": {
|
|
77
|
+
"prebuild": "npm --prefix ../core run build",
|
|
78
|
+
"build": "rm -rf dist && tsc -p tsconfig.json && npm run copy-css",
|
|
79
|
+
"copy-css": "node ../core/scripts/copy-styles.mjs dist/mdk-styles.css",
|
|
80
|
+
"clean": "rm -rf dist",
|
|
81
|
+
"typecheck": "tsc --noEmit",
|
|
82
|
+
"test": "npm run build && node --test --experimental-loader ./tests/test-loader.mjs tests/route.test.js",
|
|
83
|
+
"pack:local": "npm pack"
|
|
84
|
+
}
|
|
85
|
+
}
|