-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 781 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 781 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
27
28
29
30
31
{
"name": "kaji",
"version": "0.1.0",
"description": "Kaji — InfernoJS-native Nostr protocol library",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./*": "./src/*.ts"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target browser --format esm",
"check": "tsc --noEmit"
},
"dependencies": {
"@noble/curves": "^1.8.0",
"@noble/hashes": "^1.7.0",
"@scure/base": "^1.2.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/bun": "latest"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TekkadanPlays/kaji"
},
"keywords": ["nostr", "inferno", "infernojs", "protocol", "websocket", "relay"]
}