@edgeandnode/graph-auth-kit 2.13.0 → 2.14.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgeandnode/graph-auth-kit",
3
- "version": "2.13.0",
3
+ "version": "2.14.0",
4
4
  "private": false,
5
5
  "description": "Wallet authentication connect kit in The Graph suite of applications",
6
6
  "author": "Edge & Node",
@@ -25,6 +25,10 @@
25
25
  "./test-harness": {
26
26
  "types": "./dist/test-harness/index.d.ts",
27
27
  "default": "./dist/test-harness/index.js"
28
+ },
29
+ "./ens": {
30
+ "types": "./dist/ens/index.d.ts",
31
+ "default": "./dist/ens/index.js"
28
32
  }
29
33
  },
30
34
  "files": [
@@ -32,11 +36,14 @@
32
36
  ],
33
37
  "sideEffects": false,
34
38
  "dependencies": {
39
+ "@ensdomains/ensjs": "^4.0.1-alpha.0",
35
40
  "@ethersproject/abstract-signer": "^5.7.0",
36
41
  "@safe-global/api-kit": "2.5.1",
37
42
  "@safe-global/protocol-kit": "5.0.1",
38
43
  "@safe-global/safe-core-sdk-types": "5.1.0",
39
44
  "@wagmi/core": "2.13.8",
45
+ "graphql": "^16.9.0",
46
+ "graphql-request": "^7.1.0",
40
47
  "zod": "^3.23.8"
41
48
  },
42
49
  "peerDependencies": {
@@ -56,24 +63,30 @@
56
63
  "@emotion/react": "^11.13",
57
64
  "@ethersproject/abstract-provider": "^5.7.0",
58
65
  "@ethersproject/properties": "^5.7.0",
66
+ "@graphql-codegen/cli": "^5.0.3",
67
+ "@graphql-codegen/client-preset": "^4.4.0",
68
+ "@graphql-codegen/plugin-helpers": "^5.0.4",
69
+ "@graphql-typed-document-node/core": "^3.2.0",
59
70
  "@tanstack/react-query": "^5.59.0",
60
71
  "@types/react": "^18.3.11",
61
72
  "@types/react-dom": "^18.3.0",
62
73
  "autoprefixer": "^10.4.20",
74
+ "dotenv": "^16.4.5",
63
75
  "ethers": "5.7.2",
64
76
  "postcss": "^8.4.47",
65
77
  "react": "^18.3.1",
66
78
  "react-dom": "^18.3.1",
67
79
  "tailwindcss": "^3.4.13",
68
80
  "ts-node": "^10.9.2",
69
- "viem": "2.21.19",
70
- "wagmi": "2.12.17",
71
- "@edgeandnode/common": "^6.25.0",
81
+ "viem": "^2.21.19",
82
+ "wagmi": "^2.12.17",
72
83
  "@edgeandnode/gds": "^5.31.6",
84
+ "@edgeandnode/common": "^6.25.0",
73
85
  "@edgeandnode/go": "^6.56.0",
74
86
  "@edgeandnode/test-utils": "^2.0.1"
75
87
  },
76
88
  "scripts": {
89
+ "gql-codegen": "graphql-codegen --require dotenv/config --config graphql.codegen.ts",
77
90
  "build": "vite build && tsc -P ./tsconfig.build.json --emitDeclarationOnly",
78
91
  "check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
79
92
  "check:fix": "pnpm typecheck; pnpm lint:fix",