-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "next-siwe",
"version": "0.0.11",
"description": "Sign in with Ethereum for Next.js",
"keywords": [],
"author": "Ian Hunter <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ian/next-siwe.git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"typesVersions": {
"*": {
"client": [
"dist/client.d.ts"
]
}
},
"scripts": {
"clean": "rimraf dist",
"build": "tsup --clean --external next --external react --external ethers --external wagmi src/index.ts && tsc --emitDeclarationOnly",
"build:watch": "nodemon --exec \"pnpm build\""
},
"dependencies": {
"dayjs": "^1.11.5",
"jsonwebtoken": "^8.5.1",
"react-use-cookie": "^1.4.0",
"siwe": "^1.1.6",
"uuid": "^8.3.2"
},
"peerDependencies": {
"ethers": "5.5.1",
"next": "^12.1.6",
"react": ">=16.8",
"react-dom": ">=16.8",
"wagmi": "^0.6.8"
},
"devDependencies": {
"@types/node": "^17.0.12",
"@types/react": "17.0.37",
"ethers": "5.5.1",
"next": "^12.1.6",
"rimraf": "^3.0.2",
"tsup": "^6.2.3",
"typescript": "^4.6.3",
"wagmi": "^0.6.8"
}
}