coinley-checkout 0.3.0 → 0.3.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,17 +1,21 @@
1
1
  {
2
2
  "name": "coinley-checkout",
3
- "version": "0.3.0",
4
- "description": "A React SDK for Coinley cryptocurrency payment processing",
3
+ "version": "0.3.1",
4
+ "description": "A React SDK for Coinley cryptocurrency payment processing with multi-network support",
5
5
  "main": "dist/coinley-checkout.umd.js",
6
6
  "module": "dist/coinley-checkout.es.js",
7
+ "types": "dist/index.d.ts",
7
8
  "files": [
8
9
  "dist"
9
10
  ],
10
11
  "scripts": {
11
- "dev": "vite",
12
+ "dev": "vite dev --config vite.dev.config.js",
13
+ "dev:test": "vite dev --config vite.test.config.js",
12
14
  "build": "vite build",
15
+ "preview": "vite preview",
13
16
  "lint": "eslint src --ext js,jsx",
14
- "prepare": "npm run build"
17
+ "prepare": "npm run build",
18
+ "test:local": "npm run dev:test"
15
19
  },
16
20
  "keywords": [
17
21
  "cryptocurrency",
@@ -20,18 +24,23 @@
20
24
  "react",
21
25
  "checkout",
22
26
  "coinley",
23
- "tronlink",
24
27
  "multi-network",
25
28
  "metamask",
29
+ "tronlink",
26
30
  "trustwallet",
27
31
  "algorand"
28
32
  ],
29
33
  "author": "Coinley Team",
30
34
  "license": "MIT",
31
35
  "peerDependencies": {
32
- "react": "^18.0.0",
33
- "react-dom": "^18.0.0",
34
- "web3": "^4.16.0"
36
+ "react": ">=18.0.0",
37
+ "react-dom": ">=18.0.0",
38
+ "web3": ">=4.16.0"
39
+ },
40
+ "peerDependenciesMeta": {
41
+ "web3": {
42
+ "optional": false
43
+ }
35
44
  },
36
45
  "devDependencies": {
37
46
  "@vitejs/plugin-react": "^4.3.4",
@@ -44,9 +53,6 @@
44
53
  "vite": "^4.5.12"
45
54
  },
46
55
  "dependencies": {
47
- "lucide-react": "^0.501.0",
48
- "qrcode.react": "^4.2.0",
49
- "react-icons": "^5.5.0",
50
- "react-router-dom": "^7.5.1"
56
+ "qrcode.react": "^4.2.0"
51
57
  }
52
- }
58
+ }