-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "@namehash/nameguard-js",
"description": "A JavaScript implementation of NameGuard. Currently implements securePrimaryName with more coming soon.",
"version": "0.9.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/namehash/namekit.git",
"directory": "packages/nameguard-js"
},
"homepage": "https://github.com/namehash/namekit/tree/main/packages/nameguard-js",
"keywords": [
"ENS",
"NameKit",
"NameHash",
"NameGuard"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch --clean=false",
"test": "vitest"
},
"devDependencies": {
"@namekit/tsconfig": "workspace:*",
"@types/node": "22.7.4",
"tsup": "8.3.5",
"typescript": "5.6.2",
"vitest": "2.1.2"
},
"dependencies": {
"@adraffy/ens-normalize": "1.11.0",
"@namehash/ens-utils": "workspace:*",
"@namehash/nameguard": "workspace:*",
"text-segmentation": "1.0.3",
"viem": "2.21.16"
},
"publishConfig": {
"access": "public"
}
}