-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 797 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 797 Bytes
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
{
"name": "nip-17-chat-example",
"version": "0.0.1",
"private": true,
"description": "Example NIP-17 chat application using @nostr-dev-kit/messages",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"send": "tsx src/index.ts send",
"list": "tsx src/index.ts list",
"read": "tsx src/index.ts read",
"listen": "tsx src/index.ts listen",
"relay-list": "tsx src/index.ts relay-list",
"generate-keys": "tsx generate-keys.ts"
},
"dependencies": {
"@nostr-dev-kit/messages": "workspace:*",
"@nostr-dev-kit/ndk": "workspace:*",
"nostr-tools": "^2.17.0"
},
"devDependencies": {
"@types/node": "^24.7.0",
"tsx": "^4.20.5",
"typescript": "^5.9.3"
}
}