-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@1001-digital/ethereum-names",
"version": "0.3.0",
"description": "One clean API to resolve Ethereum names across ENS, the Gwei Name Service (GNS), and the Wei Name Service (WNS), powered by viem.",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "tsx --test src/*.test.ts",
"lint": "biome check src",
"format": "biome check --write src",
"check": "biome check src && tsc --noEmit",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"prepublishOnly": "pnpm build"
},
"keywords": [
"ethereum",
"ens",
"gns",
"gwei",
"gwei-name-service",
"wns",
"wei",
"wei-name-service",
"name-service",
"resolver",
"viem",
"web3"
],
"author": "jalil.eth",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/1001-digital/ethereum-names.git"
},
"bugs": {
"url": "https://github.com/1001-digital/ethereum-names/issues"
},
"homepage": "https://github.com/1001-digital/ethereum-names#readme",
"peerDependencies": {
"viem": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.30.0",
"@types/node": "^22.19.11",
"tsup": "^8.5.0",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"viem": "^2.45.3"
},
"packageManager": "pnpm@10.30.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@biomejs/biome"
]
}
}