@zuplo/zudoku-plugin-monetization 0.0.14 → 0.0.15
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.md +18 -0
- package/dist/index.mjs +1 -1
- package/package.json +22 -30
package/LICENSE.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) Zuplo, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
6
|
+
associated documentation files (the "Software"), to deal in the Software without restriction,
|
|
7
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute,
|
|
8
|
+
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
|
|
9
|
+
furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
12
|
+
portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
|
15
|
+
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
16
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
|
|
17
|
+
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
18
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/dist/index.mjs
CHANGED
|
@@ -675,7 +675,7 @@ const PricingPage = ({ subtitle = "See our pricing options and choose the one th
|
|
|
675
675
|
}),
|
|
676
676
|
/* @__PURE__ */ jsx("div", {
|
|
677
677
|
className: "w-full grid grid-cols-1 sm:grid-cols-[repeat(auto-fit,minmax(300px,max-content))] justify-center gap-6",
|
|
678
|
-
children: pricingTable.items.
|
|
678
|
+
children: pricingTable.items.map((plan) => /* @__PURE__ */ jsx(PricingCard, {
|
|
679
679
|
plan,
|
|
680
680
|
isPopular: plan.metadata?.isMostPopular === true,
|
|
681
681
|
isSubscribed: subscriptions.items.some((subscription) => ["active", "canceled"].includes(subscription.status))
|
package/package.json
CHANGED
|
@@ -1,54 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/zudoku-plugin-monetization",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/zuplo/zudoku",
|
|
7
7
|
"directory": "packages/plugin-zuplo-monetization"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
|
-
"main": "./
|
|
11
|
-
"types": "./
|
|
10
|
+
"main": "./dist/index.mjs",
|
|
11
|
+
"types": "./dist/index.d.mts",
|
|
12
12
|
"exports": {
|
|
13
|
-
".":
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/index.mjs",
|
|
15
|
+
"types": "./dist/index.d.mts"
|
|
16
|
+
}
|
|
14
17
|
},
|
|
15
18
|
"files": [
|
|
16
19
|
"dist"
|
|
17
20
|
],
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "tsdown",
|
|
20
|
-
"dev": "tsdown --watch",
|
|
21
|
-
"prepublishOnly": "pnpm typecheck && pnpm build",
|
|
22
|
-
"typecheck": "tsc --project tsconfig.json"
|
|
23
|
-
},
|
|
24
|
-
"publishConfig": {
|
|
25
|
-
"main": "./dist/index.mjs",
|
|
26
|
-
"types": "./dist/index.d.mts",
|
|
27
|
-
"exports": {
|
|
28
|
-
".": {
|
|
29
|
-
"import": "./dist/index.mjs",
|
|
30
|
-
"types": "./dist/index.d.mts"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
21
|
"dependencies": {
|
|
35
22
|
"tinyduration": "3.4.1"
|
|
36
23
|
},
|
|
37
24
|
"devDependencies": {
|
|
38
|
-
"@testing-library/dom": "
|
|
39
|
-
"@testing-library/jest-dom": "
|
|
40
|
-
"@testing-library/react": "
|
|
41
|
-
"@types/react": "
|
|
42
|
-
"@types/react-dom": "
|
|
43
|
-
"happy-dom": "
|
|
44
|
-
"react": "
|
|
45
|
-
"react-dom": "
|
|
25
|
+
"@testing-library/dom": "10.4.1",
|
|
26
|
+
"@testing-library/jest-dom": "6.9.1",
|
|
27
|
+
"@testing-library/react": "16.3.2",
|
|
28
|
+
"@types/react": "19.2.14",
|
|
29
|
+
"@types/react-dom": "19.2.3",
|
|
30
|
+
"happy-dom": "20.6.1",
|
|
31
|
+
"react": "19.2.4",
|
|
32
|
+
"react-dom": "19.2.4",
|
|
46
33
|
"tsdown": "0.20.3",
|
|
47
|
-
"zudoku": "
|
|
34
|
+
"zudoku": "0.69.0"
|
|
48
35
|
},
|
|
49
36
|
"peerDependencies": {
|
|
50
37
|
"react": ">=19.2.0",
|
|
51
38
|
"react-dom": ">=19.2.0",
|
|
52
39
|
"zudoku": "*"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsdown",
|
|
43
|
+
"dev": "tsdown --watch",
|
|
44
|
+
"typecheck": "tsc --project tsconfig.json"
|
|
53
45
|
}
|
|
54
|
-
}
|
|
46
|
+
}
|