@loofta/pay-sdk 1.0.3 → 1.0.5

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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +10 -15
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # @loofta/pay-sdk
2
2
 
3
- Embeddable **Loofta Pay Button** for React. The button opens **Loofta’s hosted checkout** — your customers pay there, and funds go to the destination wallet, network, and token configured in your organization.
3
+ Embeddable **Loofta Pay Button** for React.
4
+
5
+ - **Repository:** [github.com/loofta/loofta-pay-sdk](https://github.com/loofta/loofta-pay-sdk)
6
+ - **Examples:** [examples/pay-button-demo](https://github.com/loofta/loofta-pay-sdk/tree/master/examples/pay-button-demo)
7
+ - **Live demo:** [pay.loofta.xyz/b2b/demo](https://pay.loofta.xyz/b2b/demo) The button opens **Loofta’s hosted checkout** — your customers pay there, and funds go to the destination wallet, network, and token configured in your organization.
4
8
 
5
9
  ## Requirements
6
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loofta/pay-sdk",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Loofta Pay Button SDK - embeddable payment button that opens Loofta Pay checkout",
5
5
  "author": "Loofta",
6
6
  "license": "MIT",
@@ -14,13 +14,11 @@
14
14
  "require": "./dist/index.js"
15
15
  }
16
16
  },
17
- "files": [
18
- "dist",
19
- "README.md"
20
- ],
17
+ "files": ["dist", "README.md"],
21
18
  "scripts": {
22
19
  "build": "tsup",
23
- "dev": "tsup --watch"
20
+ "dev": "tsup --watch",
21
+ "dev:example": "cd examples/pay-button-demo && npm run dev"
24
22
  },
25
23
  "peerDependencies": {
26
24
  "react": ">=18.0.0"
@@ -33,16 +31,13 @@
33
31
  },
34
32
  "repository": {
35
33
  "type": "git",
36
- "url": "git+https://github.com/loofta/loofta-swap.git"
34
+ "url": "git+https://github.com/loofta/loofta-pay-sdk.git"
37
35
  },
38
- "keywords": [
39
- "loofta",
40
- "pay",
41
- "payment",
42
- "checkout",
43
- "crypto",
44
- "multichain"
45
- ],
36
+ "homepage": "https://pay.loofta.xyz/b2b/demo",
37
+ "bugs": {
38
+ "url": "https://github.com/loofta/loofta-pay-sdk/issues"
39
+ },
40
+ "keywords": ["loofta", "pay", "payment", "checkout", "crypto", "multichain"],
46
41
  "publishConfig": {
47
42
  "access": "public"
48
43
  }