-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.85 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@everipedia/iq-login",
"version": "7.0.13",
"description": "Auth library for IQ apps",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./client": {
"import": "./dist/client.js",
"require": "./dist/client.cjs",
"types": "./dist/client.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": "https://github.com/EveripediaNetwork/iq-login",
"license": "MIT",
"scripts": {
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "pnpm lint --write",
"build": "tsup",
"watch:build": "tsup --watch",
"release": "pnpm build && changeset publish"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@changesets/cli": "^2.27.9",
"@everipedia/web3-signer": "^0.0.13",
"@wagmi/core": "^2.14.1",
"@web3auth/base": "^9.3.0",
"@web3auth/ethereum-provider": "^9.3.0",
"@web3auth/modal": "^9.3.0",
"@web3auth/wallet-services-plugin": "^9.3.0",
"@web3auth/web3auth-wagmi-connector": "^7.0.0",
"boring-avatars": "^1.11.2",
"cookies-next": "^4.3.0",
"vitest": "^2.1.3",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tanstack/react-query": "^5.62.11",
"@types/node": "^20.16.14",
"@types/react": "^18.3.11",
"changeset": "^0.2.6",
"react": "^18.3.1",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"viem": "~2.21.60",
"wagmi": "^2.14.6"
},
"peerDependencies": {
"@tanstack/react-query": "^5.53.1",
"next": "15.0.0",
"react": "19.0.0-rc-65a56d0e-20241020",
"react-dom": "19.0.0-rc-65a56d0e-20241020",
"viem": "2.x",
"wagmi": "^2.12.4"
},
"files": [
"dist",
"!**/*.test.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}