@trustpayments/js-payments-card 2.2.1067 → 2.2.1069
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/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ import Card from "@trustpayments/js-payments-card";
|
|
|
42
42
|
|
|
43
43
|
> **Note for UMD consumers:** If you were previously loading the library via a `<script>` UMD tag, migrate to an ES module bundler (Webpack, Rollup, Vite, etc.).
|
|
44
44
|
>
|
|
45
|
-
> **Node.js consumers:** This package requires Node.js
|
|
45
|
+
> **Node.js consumers:** This package requires Node.js 22+ with native ESM support. Use `import` instead of `require()`. If your project uses CommonJS, configure your bundler to handle ESM dependencies.
|
|
46
46
|
|
|
47
47
|
##### Minimum supported browsers:
|
|
48
48
|
|
|
@@ -54,7 +54,7 @@ import Card from "@trustpayments/js-payments-card";
|
|
|
54
54
|
|
|
55
55
|
##### Minimum supported Node.js version:
|
|
56
56
|
|
|
57
|
-
- Node.js
|
|
57
|
+
- Node.js 22+
|
|
58
58
|
|
|
59
59
|
## Testing how-to
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trustpayments/js-payments-card",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1069",
|
|
4
4
|
"description": "TypeScript Payment Card",
|
|
5
5
|
"author": "Trust Payments <support@trustpayments.com>",
|
|
6
6
|
"homepage": "https://docs.trustpayments.com",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"url": "git+https://gitlab.com/trustpayments-public/stjs/js-payments-card"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
|
-
"node": "
|
|
50
|
-
"npm": "10.9.
|
|
49
|
+
"node": "22.21.1",
|
|
50
|
+
"npm": "10.9.4"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "vite build",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"core-js": "3.48.0",
|
|
102
102
|
"vite": "7.3.1"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "6e3bc8d95eb3f1ec419f1f87ae66ad72b75f7ad9"
|
|
105
105
|
}
|