@privy-io/react-auth 1.80.0 → 1.80.1-beta-20240823154149
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/esm/index.js +198 -198
- package/dist/index.d.ts +1 -1
- package/dist/index.js +216 -216
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.80.
|
|
2
|
+
"version": "1.80.1-beta-20240823154149",
|
|
3
3
|
"name": "@privy-io/react-auth",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "React client for the Privy Auth API",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"clean": "rm -rf dist",
|
|
37
37
|
"dev": "npx tsup --watch",
|
|
38
38
|
"stories": "cd storybook && vite --port=5702",
|
|
39
|
-
"test": "jest --testMatch \"**/*(?!.*integration).test.ts
|
|
40
|
-
"test-integration": "jest --testMatch \"**/test/integration/**/*.test.ts
|
|
39
|
+
"test": "jest --testMatch \"**/*(?!.*integration).test.ts(x)?\"",
|
|
40
|
+
"test-integration": "jest --testMatch \"**/test/integration/**/*.test.ts(x)?\"",
|
|
41
41
|
"test:ci": "npm run test",
|
|
42
42
|
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" && npx tsc --noEmit",
|
|
43
43
|
"format": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix"
|
|
@@ -86,12 +86,20 @@
|
|
|
86
86
|
"web3-core-helpers": "^1.8.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
+
"@babel/core": "^7.25.2",
|
|
90
|
+
"@babel/preset-env": "^7.25.3",
|
|
91
|
+
"@babel/preset-react": "^7.24.7",
|
|
92
|
+
"@babel/preset-typescript": "^7.24.7",
|
|
93
|
+
"@jest/globals": "^29.7.0",
|
|
89
94
|
"@privy-io/eslint-config-custom": "*",
|
|
90
95
|
"@privy-io/public-api": "2.8.5",
|
|
91
96
|
"@saithodev/semantic-release-backmerge": "^2.1.2",
|
|
92
97
|
"@semantic-release/git": "^10.0.1",
|
|
93
98
|
"@storylite/storylite": "^0.15.1",
|
|
94
99
|
"@storylite/vite-plugin": "^0.15.0",
|
|
100
|
+
"@testing-library/dom": "^10.4.0",
|
|
101
|
+
"@testing-library/jest-dom": "^6.4.8",
|
|
102
|
+
"@testing-library/react": "^16.0.0",
|
|
95
103
|
"@tsconfig/node16-strictest-esm": "^1.0.3",
|
|
96
104
|
"@types/create-hash": "^1.2.6",
|
|
97
105
|
"@types/fast-password-entropy": "^1.1.1",
|
|
@@ -107,9 +115,9 @@
|
|
|
107
115
|
"@types/tinycolor2": "^1.4.3",
|
|
108
116
|
"@types/uuid": "^9.0.2",
|
|
109
117
|
"@vitejs/plugin-react-swc": "^3.7.0",
|
|
118
|
+
"babel-jest": "^29.7.0",
|
|
110
119
|
"jest-environment-jsdom": "^29.7.0",
|
|
111
120
|
"semantic-release": "^19.0.5",
|
|
112
|
-
"ts-jest": "^29.0.3",
|
|
113
121
|
"tsup": "^6.2.3",
|
|
114
122
|
"typescript": "~5.5.3",
|
|
115
123
|
"vite": "^5.4.0"
|