This repository was archived by the owner on Jun 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.76 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
{
"name": "@namehash/namekit-react",
"description": "React UI components for building on NameKit.",
"version": "0.12.0",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/namehash/namekit.git",
"directory": "packages/namekit-react"
},
"homepage": "https://github.com/namehash/namekit/tree/main/packages/namekit-react",
"keywords": [
"ENS",
"NameKit",
"NameHash"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"sideEffects": false,
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"styles": "./dist/index.css",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs.js"
},
"./client": {
"import": "./dist/client.mjs",
"require": "./dist/client.cjs.js"
},
"./styles.css": {
"import": "./dist/index.css",
"default": "./dist/index.css"
}
},
"dependencies": {
"@adraffy/ens-normalize": "1.11.0",
"@headlessui-float/react": "0.11.4",
"@headlessui/react": "1.7.17",
"@namehash/ens-utils": "workspace:*",
"@namehash/ens-webfont": "workspace:*",
"@namehash/nameguard": "0.9.0",
"classcat": "5.0.5",
"viem": "2.21.16"
},
"devDependencies": {
"@namekit/tsconfig": "workspace:*",
"@tailwindcss/forms": "0.5.9",
"@types/node": "22.7.4",
"@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"
}
}