-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.29 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.29 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@randombits/use-siwe",
"version": "0.0.0-semantically-released",
"description": "React hook and API endpoints that provide Sign In With Ethereum support",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist/**",
"README.md",
"LICENSE.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./*": {
"import": "./dist/*/index.js",
"require": "./dist/*/index.cjs",
"types": "./dist/*/index.d.ts"
}
},
"typesVersions": {
"*": {
"next": [
"./dist/next/index.d.ts"
],
"express": [
"./dist/express/index.d.ts"
]
}
},
"scripts": {
"build": "tsup",
"prepare": "husky install",
"lint": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/random-bits-studio/use-siwe.git"
},
"keywords": [
"SIWE",
"Next.js",
"auth",
"authentication",
"Iron Session",
"Session",
"Ethereum",
"Web3"
],
"author": "AJ May <aj@randombits.studio>",
"license": "MIT",
"bugs": {
"url": "https://github.com/random-bits-studio/use-siwe/issues"
},
"homepage": "https://github.com/random-bits-studio/use-siwe#readme",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/react": "^18.0.20",
"husky": "^8.0.3",
"iron-session": "^6.3.1",
"lint-staged": "^13.1.0",
"next": "^13.1.2",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"wagmi": "^0.10.10"
},
"dependencies": {
"@tanstack/react-query": "^4.22.0",
"siwe": "^2.0.5",
"zod": "^3.20.2",
"zod-validation-error": "^0.3.0"
},
"peerDependencies": {
"express": ">=4",
"iron-session": ">=6",
"next": ">=10",
"react": ">=17",
"wagmi": ">=0.9.0"
},
"peerDependenciesMeta": {
"wagmi": {
"optional": true
},
"iron-session": {
"optional": true
},
"next": {
"optional": true
},
"express": {
"optional": true
},
"react": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,json,css,md}": "prettier --write"
}
}