-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "@namehash/nameguard-react",
"description": "React UI components for building on NameGuard.",
"version": "0.7.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/namehash/namekit.git",
"directory": "packages/nameguard-react"
},
"homepage": "https://github.com/namehash/namekit/tree/main/packages/nameguard-react",
"keywords": [
"ENS",
"NameKit",
"NameHash",
"NameGuard"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --clean=false"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./styles.css": {
"import": "./dist/index.css",
"default": "./dist/index.css"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"styles": "./dist/index.css",
"dependencies": {
"@headlessui/react": "1.7.17",
"@heroicons/react": "2.1.5",
"@namehash/ens-utils": "workspace:*",
"@namehash/ens-webfont": "workspace:*",
"@namehash/nameguard": "workspace:*",
"@namehash/namekit-react": "workspace:*",
"classcat": "5.0.5",
"sonner": "1.5.0",
"swr": "2.2.5",
"zustand": "4.5.4"
},
"devDependencies": {
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.13",
"tsup": "8.3.5",
"typescript": "5.6.2"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"publishConfig": {
"access": "public"
}
}