forked from random-bits-studio/rainbowkit-use-siwe-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@randombits/rainbowkit-use-siwe-auth",
"version": "0.0.0-semantically-released",
"description": "RainbowKit authentication adapter for Sign-In with Ethereum and use-siwe",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist/**",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsup",
"prepare": "husky install",
"lint": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/random-bits-studio/rainbowkit-use-siwe-auth.git"
},
"keywords": [
"SIWE",
"Rainbowkit",
"auth",
"authentication",
"use-siwe",
"Ethereum",
"Web3"
],
"author": "AJ May <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/random-bits-studio/rainbowkit-use-siwe-auth/issues"
},
"homepage": "https://github.com/random-bits-studio/rainbowkit-use-siwe-auth#readme",
"devDependencies": {
"@rainbow-me/rainbowkit": "^0.8.1",
"@randombits/use-siwe": "^2.0.2",
"@types/react": "^18.0.26",
"husky": "^8.0.3",
"lint-staged": "^13.0.4",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@rainbow-me/rainbowkit": ">=0.8.0",
"@randombits/use-siwe": ">=2.0.1",
"react": ">=17"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{js,json,css,md}": "prettier --write"
}
}