@privy-io/wagmi 0.2.11 → 0.2.13

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 +6 -0
  2. package/package.json +26 -26
package/README.md CHANGED
@@ -57,3 +57,9 @@ export const Providers = ({children}: {children: ReactNode}) => (
57
57
  ## Usage
58
58
 
59
59
  Use `wagmi` as you normally would!
60
+
61
+ ## Changelog
62
+
63
+ Our [changelog](https://docs.privy.io/reference/sdk/wagmi/changelog) contains the latest information about new releases, including features, fixes, and upcoming changes.
64
+
65
+ We use [Semantic Versioning](https://semver.org/) to track changes.
package/package.json CHANGED
@@ -1,23 +1,30 @@
1
1
  {
2
- "version": "0.2.11",
3
2
  "name": "@privy-io/wagmi",
4
- "sideEffects": false,
3
+ "version": "0.2.13",
5
4
  "description": "Wagmi bindings for the react client",
6
5
  "keywords": [
7
6
  "privy",
8
7
  "wagmi"
9
8
  ],
10
- "homepage": "https://github.com/orgs/privy-io/discussions",
9
+ "homepage": "https://docs.privy.io",
10
+ "bugs": {
11
+ "url": "https://privy.io/slack"
12
+ },
11
13
  "license": "Apache-2.0",
12
- "module": "./dist/esm/index.js",
13
- "types": "./dist/index.d.ts",
14
- "typings": "./dist/index",
14
+ "author": "privy.io",
15
+ "sideEffects": false,
15
16
  "exports": {
16
17
  ".": {
17
18
  "import": "./dist/esm/index.js",
18
19
  "types": "./dist/index.d.ts"
19
20
  }
20
21
  },
22
+ "module": "./dist/esm/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "typings": "./dist/index",
25
+ "directories": {
26
+ "test": "test"
27
+ },
21
28
  "files": [
22
29
  "dist/**/*",
23
30
  "LICENSE",
@@ -25,17 +32,23 @@
25
32
  ],
26
33
  "scripts": {
27
34
  "build": "npx tsup --clean --minify",
28
- "generate-types": "npx tsup --dts-only",
35
+ "check-types": "npx tsc --noEmit",
29
36
  "clean": "rm -rf dist",
30
37
  "dev": "npx tsup --watch",
38
+ "format": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix",
39
+ "generate-types": "npx tsup --dts-only",
40
+ "lint": "npx eslint \"src/**/*.{ts,tsx,js,jsx}\"",
31
41
  "test": "jest --testMatch \"**/*(?!.*integration).test.ts\"",
32
- "test-integration": "jest --testMatch \"**/test/integration/**/*.test.ts\"",
33
- "test:ci": "npm run test",
34
- "lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" && npx tsc --noEmit",
35
- "format": "eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix"
42
+ "test-integration": "jest --testMatch \"**/test/integration/**/*.test.ts\""
36
43
  },
44
+ "browserslist": [
45
+ "defaults",
46
+ "node >= 18",
47
+ "not op_mini all"
48
+ ],
37
49
  "devDependencies": {
38
50
  "@privy-io/eslint-config-custom": "*",
51
+ "@privy-io/react-auth": "^1.64.1",
39
52
  "@tsconfig/node16-strictest-esm": "^1.0.3",
40
53
  "@types/jest": "^29.1.2",
41
54
  "@types/react": "^18.2.15",
@@ -47,23 +60,10 @@
47
60
  },
48
61
  "peerDependencies": {
49
62
  "@privy-io/react-auth": "^1.64.1",
63
+ "react": ">=18",
50
64
  "viem": "^2",
51
- "wagmi": "^2",
52
- "react": "^18",
53
- "react-dom": "^18"
54
- },
55
- "bugs": {
56
- "url": "https://github.com/orgs/privy-io/discussions"
57
- },
58
- "directories": {
59
- "test": "test"
65
+ "wagmi": "^2"
60
66
  },
61
- "author": "privy.io",
62
- "browserslist": [
63
- "defaults",
64
- "node >= 18",
65
- "not op_mini all"
66
- ],
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  }