@pandait.tech/payment-nuvei 0.1.1 → 0.2.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandait.tech/payment-nuvei",
3
- "version": "0.1.1",
3
+ "version": "0.2.1",
4
4
  "description": "Nuvei Ecuador payment gateway adapter for Next.js: charge handler, webhook, 3DS flow, refunds, tokenized cards, and payment links. Part of panda-commerce-kit.",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -37,6 +37,11 @@
37
37
  "import": "./dist/handlers/index.js",
38
38
  "require": "./dist/handlers/index.cjs"
39
39
  },
40
+ "./adapters": {
41
+ "types": "./dist/adapters/index.d.ts",
42
+ "import": "./dist/adapters/index.js",
43
+ "require": "./dist/adapters/index.cjs"
44
+ },
40
45
  "./ui": {
41
46
  "types": "./dist/ui/index.d.ts",
42
47
  "import": "./dist/ui/index.js",
@@ -52,6 +57,13 @@
52
57
  "dist",
53
58
  "README.md"
54
59
  ],
60
+ "scripts": {
61
+ "build": "tsup",
62
+ "dev": "tsup --watch",
63
+ "type-check": "tsc --noEmit",
64
+ "lint": "eslint src",
65
+ "clean": "rm -rf dist .turbo"
66
+ },
55
67
  "peerDependencies": {
56
68
  "firebase": ">=10.0.0",
57
69
  "firebase-admin": ">=12.0.0",
@@ -66,6 +78,9 @@
66
78
  },
67
79
  "react-icons": {
68
80
  "optional": true
81
+ },
82
+ "next": {
83
+ "optional": true
69
84
  }
70
85
  },
71
86
  "devDependencies": {
@@ -79,12 +94,5 @@
79
94
  "tsup": "^8.3.0",
80
95
  "typescript": "^5.6.3",
81
96
  "zod": "^3.23.8"
82
- },
83
- "scripts": {
84
- "build": "tsup",
85
- "dev": "tsup --watch",
86
- "type-check": "tsc --noEmit",
87
- "lint": "eslint src",
88
- "clean": "rm -rf dist .turbo"
89
97
  }
90
- }
98
+ }