-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 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
{
"name": "@ensnode/ensnode-react",
"version": "1.9.0",
"type": "module",
"description": "React hooks and providers for ENSNode",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/namehash/ensnode.git",
"directory": "packages/ensnode-react"
},
"homepage": "https://github.com/namehash/ensnode/tree/main/packages/ensnode-react",
"keywords": [
"ENS",
"ENSNode",
"React"
],
"files": [
"dist"
],
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"prepublish": "tsup",
"dev": "tsup --watch",
"lint": "biome check --write .",
"lint:ci": "biome ci",
"typecheck": "tsgo --noEmit"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@ensnode/shared-configs": "workspace:*",
"@tanstack/react-query": "^5.62.14",
"@testing-library/react": "catalog:",
"@types/node": "catalog:",
"@types/react": "19.2.7",
"react": "19.2.1",
"tsup": "^8.3.6",
"typescript": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
"@ensnode/ensnode-sdk": "workspace:*"
}
}