fare-privy-core 1.8.8 → 1.9.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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +117 -117
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export { CardCarousel } from "./src/modals/FundWalletModal/CardCarousel";
|
|
|
16
16
|
export { TransferModalFunds } from "./src/modals/FundWalletModal/TransferFunds";
|
|
17
17
|
export { FundWalletMenu } from "./src/modals/FundWalletModal/FundWalletMenu";
|
|
18
18
|
/**
|
|
19
|
-
* ✅ PRODUCTION READY - v1.
|
|
19
|
+
* ✅ PRODUCTION READY - v1.9.0:
|
|
20
20
|
*
|
|
21
21
|
* ✅ Dependencies: Tightened version constraints for stability
|
|
22
22
|
* ✅ Build System: TypeScript compilation working flawlessly
|
package/dist/index.js
CHANGED
|
@@ -24,7 +24,7 @@ export { FundWalletMenu } from "./src/modals/FundWalletModal/FundWalletMenu";
|
|
|
24
24
|
// ❌ REMOVED - Had too many external dependencies
|
|
25
25
|
// export * from "./farePrivy/modals/index.js";
|
|
26
26
|
/**
|
|
27
|
-
* ✅ PRODUCTION READY - v1.
|
|
27
|
+
* ✅ PRODUCTION READY - v1.9.0:
|
|
28
28
|
*
|
|
29
29
|
* ✅ Dependencies: Tightened version constraints for stability
|
|
30
30
|
* ✅ Build System: TypeScript compilation working flawlessly
|
package/package.json
CHANGED
|
@@ -1,117 +1,117 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "fare-privy-core",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "A comprehensive React library for Privy authentication and wallet management with casino gaming features, featuring reliable micro-hooks based on proven patterns",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"privy",
|
|
7
|
-
"wallet",
|
|
8
|
-
"authentication",
|
|
9
|
-
"web3",
|
|
10
|
-
"react",
|
|
11
|
-
"crypto",
|
|
12
|
-
"casino",
|
|
13
|
-
"gaming",
|
|
14
|
-
"blockchain",
|
|
15
|
-
"ethereum",
|
|
16
|
-
"solana"
|
|
17
|
-
],
|
|
18
|
-
"homepage": "https://github.com/farePrivy/fare-privy-core#readme",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/farePrivy/fare-privy-core.git"
|
|
22
|
-
},
|
|
23
|
-
"bugs": {
|
|
24
|
-
"url": "https://github.com/farePrivy/fare-privy-core/issues"
|
|
25
|
-
},
|
|
26
|
-
"license": "ISC",
|
|
27
|
-
"author": {
|
|
28
|
-
"name": "zynkah",
|
|
29
|
-
"url": "https://github.com/Zynkah"
|
|
30
|
-
},
|
|
31
|
-
"files": [
|
|
32
|
-
"dist",
|
|
33
|
-
"README.md",
|
|
34
|
-
"LICENSE"
|
|
35
|
-
],
|
|
36
|
-
"type": "module",
|
|
37
|
-
"main": "dist/index.js",
|
|
38
|
-
"module": "dist/index.js",
|
|
39
|
-
"types": "dist/index.d.ts",
|
|
40
|
-
"exports": {
|
|
41
|
-
".": {
|
|
42
|
-
"types": "./dist/index.d.ts",
|
|
43
|
-
"import": "./dist/index.js",
|
|
44
|
-
"default": "./dist/index.js"
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
"scripts": {
|
|
48
|
-
"build": "tsc",
|
|
49
|
-
"prebuild": "rm -rf dist || rmdir /s /q dist || echo 'Dist folder cleared'",
|
|
50
|
-
"postbuild": "echo 'Build completed successfully'",
|
|
51
|
-
"dev": "tsc --watch",
|
|
52
|
-
"test": "jest",
|
|
53
|
-
"prepublishOnly": "npm run build",
|
|
54
|
-
"test:watch": "jest --watch",
|
|
55
|
-
"test:coverage": "jest --coverage",
|
|
56
|
-
"lint": "echo 'No linting configured'",
|
|
57
|
-
"type-check": "tsc --noEmit",
|
|
58
|
-
"clean": "rm -rf dist || rmdir /s /q dist || echo 'Cleaned'",
|
|
59
|
-
"version": "pnpm run build && git add .",
|
|
60
|
-
"postversion": "git push && git push --tags"
|
|
61
|
-
},
|
|
62
|
-
"dependencies": {
|
|
63
|
-
"@biconomy/sdk": "^0.0.29",
|
|
64
|
-
"@ethersproject/abi": "^5.7.0",
|
|
65
|
-
"@ethersproject/providers": "^5.7.2",
|
|
66
|
-
"@privy-io/wagmi": "^0.2.12",
|
|
67
|
-
"@sentry/react": "^7.99.0",
|
|
68
|
-
"@testing-library/react": "^16.3.0",
|
|
69
|
-
"@testing-library/user-event": "^14.6.1",
|
|
70
|
-
"@types/jest": "^30.0.0",
|
|
71
|
-
"@types/node": "^20.10.5",
|
|
72
|
-
"@types/react": "^18.2.45",
|
|
73
|
-
"@types/react-dom": "^18.2.18",
|
|
74
|
-
"@types/styled-components": "^5.1.0",
|
|
75
|
-
"axios": "^1.6.2",
|
|
76
|
-
"ethers": "^5.7.2",
|
|
77
|
-
"framer-motion": "^10.16.16",
|
|
78
|
-
"jest": "^30.2.0",
|
|
79
|
-
"jest-environment-jsdom": "^30.2.0",
|
|
80
|
-
"numeral": "^2.0.6",
|
|
81
|
-
"react": "^18.3.1",
|
|
82
|
-
"react-countup": "^6.5.0",
|
|
83
|
-
"react-number-format": "^5.4.4",
|
|
84
|
-
"react-slider": "^2.0.6",
|
|
85
|
-
"styled-components": "6.1.1",
|
|
86
|
-
"ts-jest": "^29.4.5",
|
|
87
|
-
"typescript": "^5.3.3",
|
|
88
|
-
"uuid": "^13.0.0",
|
|
89
|
-
"valtio": ">=1.0.0 <2.0.0",
|
|
90
|
-
"viem": "^2.26.2",
|
|
91
|
-
"wagmi": "^2.12.0",
|
|
92
|
-
"zustand": "^5.0.9"
|
|
93
|
-
},
|
|
94
|
-
"peerDependencies": {
|
|
95
|
-
"@privy-io/react-auth": "^1.0.0",
|
|
96
|
-
"framer-motion": ">=6.0.0",
|
|
97
|
-
"react": ">=16.8.0",
|
|
98
|
-
"react-dom": ">=16.8.0",
|
|
99
|
-
"styled-components": ">=5.0.0",
|
|
100
|
-
"valtio": ">=1.0.0"
|
|
101
|
-
},
|
|
102
|
-
"devDependencies": {
|
|
103
|
-
"@testing-library/jest-dom": "^6.1.4",
|
|
104
|
-
"@testing-library/react": "^14.2.1",
|
|
105
|
-
"@testing-library/user-event": "^14.5.2",
|
|
106
|
-
"@types/jest": "^29.5.12",
|
|
107
|
-
"@types/node": "^20.11.30",
|
|
108
|
-
"@types/numeral": "^2.0.5",
|
|
109
|
-
"@types/react": "^18.2.62",
|
|
110
|
-
"@types/react-dom": "^18.2.19",
|
|
111
|
-
"@types/styled-components": "^5.1.34",
|
|
112
|
-
"jest": "^29.7.0",
|
|
113
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
114
|
-
"ts-jest": "^29.1.2",
|
|
115
|
-
"typescript": "^5.4.5"
|
|
116
|
-
}
|
|
117
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "fare-privy-core",
|
|
3
|
+
"version": "1.9.0",
|
|
4
|
+
"description": "A comprehensive React library for Privy authentication and wallet management with casino gaming features, featuring reliable micro-hooks based on proven patterns",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"privy",
|
|
7
|
+
"wallet",
|
|
8
|
+
"authentication",
|
|
9
|
+
"web3",
|
|
10
|
+
"react",
|
|
11
|
+
"crypto",
|
|
12
|
+
"casino",
|
|
13
|
+
"gaming",
|
|
14
|
+
"blockchain",
|
|
15
|
+
"ethereum",
|
|
16
|
+
"solana"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://github.com/farePrivy/fare-privy-core#readme",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/farePrivy/fare-privy-core.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/farePrivy/fare-privy-core/issues"
|
|
25
|
+
},
|
|
26
|
+
"license": "ISC",
|
|
27
|
+
"author": {
|
|
28
|
+
"name": "zynkah",
|
|
29
|
+
"url": "https://github.com/Zynkah"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"type": "module",
|
|
37
|
+
"main": "dist/index.js",
|
|
38
|
+
"module": "dist/index.js",
|
|
39
|
+
"types": "dist/index.d.ts",
|
|
40
|
+
"exports": {
|
|
41
|
+
".": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"import": "./dist/index.js",
|
|
44
|
+
"default": "./dist/index.js"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"build": "tsc",
|
|
49
|
+
"prebuild": "rm -rf dist || rmdir /s /q dist || echo 'Dist folder cleared'",
|
|
50
|
+
"postbuild": "echo 'Build completed successfully'",
|
|
51
|
+
"dev": "tsc --watch",
|
|
52
|
+
"test": "jest",
|
|
53
|
+
"prepublishOnly": "npm run build",
|
|
54
|
+
"test:watch": "jest --watch",
|
|
55
|
+
"test:coverage": "jest --coverage",
|
|
56
|
+
"lint": "echo 'No linting configured'",
|
|
57
|
+
"type-check": "tsc --noEmit",
|
|
58
|
+
"clean": "rm -rf dist || rmdir /s /q dist || echo 'Cleaned'",
|
|
59
|
+
"version": "pnpm run build && git add .",
|
|
60
|
+
"postversion": "git push && git push --tags"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@biconomy/sdk": "^0.0.29",
|
|
64
|
+
"@ethersproject/abi": "^5.7.0",
|
|
65
|
+
"@ethersproject/providers": "^5.7.2",
|
|
66
|
+
"@privy-io/wagmi": "^0.2.12",
|
|
67
|
+
"@sentry/react": "^7.99.0",
|
|
68
|
+
"@testing-library/react": "^16.3.0",
|
|
69
|
+
"@testing-library/user-event": "^14.6.1",
|
|
70
|
+
"@types/jest": "^30.0.0",
|
|
71
|
+
"@types/node": "^20.10.5",
|
|
72
|
+
"@types/react": "^18.2.45",
|
|
73
|
+
"@types/react-dom": "^18.2.18",
|
|
74
|
+
"@types/styled-components": "^5.1.0",
|
|
75
|
+
"axios": "^1.6.2",
|
|
76
|
+
"ethers": "^5.7.2",
|
|
77
|
+
"framer-motion": "^10.16.16",
|
|
78
|
+
"jest": "^30.2.0",
|
|
79
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
80
|
+
"numeral": "^2.0.6",
|
|
81
|
+
"react": "^18.3.1",
|
|
82
|
+
"react-countup": "^6.5.0",
|
|
83
|
+
"react-number-format": "^5.4.4",
|
|
84
|
+
"react-slider": "^2.0.6",
|
|
85
|
+
"styled-components": "6.1.1",
|
|
86
|
+
"ts-jest": "^29.4.5",
|
|
87
|
+
"typescript": "^5.3.3",
|
|
88
|
+
"uuid": "^13.0.0",
|
|
89
|
+
"valtio": ">=1.0.0 <2.0.0",
|
|
90
|
+
"viem": "^2.26.2",
|
|
91
|
+
"wagmi": "^2.12.0",
|
|
92
|
+
"zustand": "^5.0.9"
|
|
93
|
+
},
|
|
94
|
+
"peerDependencies": {
|
|
95
|
+
"@privy-io/react-auth": "^1.0.0",
|
|
96
|
+
"framer-motion": ">=6.0.0",
|
|
97
|
+
"react": ">=16.8.0",
|
|
98
|
+
"react-dom": ">=16.8.0",
|
|
99
|
+
"styled-components": ">=5.0.0",
|
|
100
|
+
"valtio": ">=1.0.0"
|
|
101
|
+
},
|
|
102
|
+
"devDependencies": {
|
|
103
|
+
"@testing-library/jest-dom": "^6.1.4",
|
|
104
|
+
"@testing-library/react": "^14.2.1",
|
|
105
|
+
"@testing-library/user-event": "^14.5.2",
|
|
106
|
+
"@types/jest": "^29.5.12",
|
|
107
|
+
"@types/node": "^20.11.30",
|
|
108
|
+
"@types/numeral": "^2.0.5",
|
|
109
|
+
"@types/react": "^18.2.62",
|
|
110
|
+
"@types/react-dom": "^18.2.19",
|
|
111
|
+
"@types/styled-components": "^5.1.34",
|
|
112
|
+
"jest": "^29.7.0",
|
|
113
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
114
|
+
"ts-jest": "^29.1.2",
|
|
115
|
+
"typescript": "^5.4.5"
|
|
116
|
+
}
|
|
117
|
+
}
|