-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.34 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
{
"name": "@nostr-dev-kit/react",
"version": "1.3.13",
"description": "React hooks for the Nostr Development Kit (NDK)",
"type": "module",
"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.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "bun run build --watch",
"lint": "biome check .",
"format": "biome format . --write",
"test": "vitest",
"test:watch": "vitest --watch"
},
"dependencies": {
"@nostr-dev-kit/ndk": "^3.0.0",
"@nostr-dev-kit/wallet": "^1.0.0",
"@testing-library/react": "^14.1.2",
"zustand": "^5.0.3"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/react": "^18.2.0",
"jsdom": "^27.0.1",
"tsup": "^8.4.0",
"react": "*",
"react-dom": "^18.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.14",
"vite": "^7.1.11",
"esbuild": "^0.27.2",
"zustand": "^5.0.3"
},
"keywords": [
"nostr",
"ndk",
"react",
"hooks"
],
"author": "_@f7z.io",
"license": "MIT"
}