@stacksjs/payments 0.51.0 → 0.52.0

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 CHANGED
@@ -35,7 +35,7 @@ pnpm test
35
35
 
36
36
  Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
37
37
 
38
- ## 💪🏼 Contributing
38
+ ## 🚜 Contributing
39
39
 
40
40
  Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
41
41
 
package/dist/index.d.ts CHANGED
@@ -1 +1 @@
1
- export {};
1
+ export * as stripe from './drivers/stripe';
package/dist/index.mjs CHANGED
@@ -1 +1 @@
1
- export {};
1
+ export * as stripe from "./drivers/stripe.mjs";
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/payments",
3
3
  "type": "module",
4
- "version": "0.51.0",
5
- "packageManager": "pnpm@7.26.3",
4
+ "version": "0.52.0",
5
+ "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks payments package. Currently supporting Stripe.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -24,7 +24,12 @@
24
24
  "stripe",
25
25
  "stacks"
26
26
  ],
27
- "main": "dist/index.mjs",
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.mjs"
31
+ }
32
+ },
28
33
  "module": "dist/index.mjs",
29
34
  "types": "dist/index.d.ts",
30
35
  "contributors": [
@@ -34,18 +39,19 @@
34
39
  "dist",
35
40
  "README.md"
36
41
  ],
37
- "engines": {
38
- "node": ">=v18.14.0",
39
- "pnpm": ">=7.26.3"
42
+ "dependencies": {
43
+ "@stripe/stripe-js": "^1.53.0",
44
+ "stripe": "^12.5.0",
45
+ "@stacksjs/utils": "0.52.0"
40
46
  },
41
47
  "devDependencies": {
42
- "mkdist": "^1.1.0",
43
- "typescript": "^4.9.5",
44
- "@stacksjs/testing": "0.51.0"
48
+ "@stacksjs/config": "0.52.0",
49
+ "@stacksjs/development": "0.52.0",
50
+ "@stacksjs/types": "0.52.0"
45
51
  },
46
52
  "scripts": {
47
- "build": "mkdist -d",
48
- "dev": "mkdist -d",
53
+ "build": "unbuild",
54
+ "dev": "unbuild --stub",
49
55
  "typecheck": "tsc --noEmit"
50
56
  }
51
57
  }