-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.18 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.18 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
{
"name": "@nostr-dev-kit/blossom",
"version": "8.0.0",
"description": "Blossom protocol support for NDK (Nostr Development Kit)",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"dev": "tsc -w",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"nostr",
"ndk",
"blossom",
"upload",
"blob",
"media",
"image",
"file"
],
"author": "Nostr Dev Kit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nostr-dev-kit/ndk.git"
},
"bugs": {
"url": "https://github.com/nostr-dev-kit/ndk/issues"
},
"homepage": "https://github.com/nostr-dev-kit/ndk#readme",
"dependencies": {
"debug": "^4.3.7"
},
"peerDependencies": {
"@nostr-dev-kit/ndk": "^3.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^24.10.0",
"rimraf": "^5.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=16.0"
}
}