-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 1.96 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "blossom-client-sdk",
"version": "3.0.1",
"description": "A simple client for manage blobs on blossom servers",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"typings": "./lib/index.d.ts",
"author": "hzrd149",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "vitest run",
"coverage": "vitest run --coverage",
"format": "prettier -w .",
"docs": "typedoc src/index.ts",
"test:browser": "vitest"
},
"files": [
"lib"
],
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./client": {
"import": "./lib/client.js",
"types": "./lib/client.d.ts"
},
"./image": {
"import": "./lib/image.js",
"types": "./lib/image.d.ts"
},
"./helpers": {
"import": "./lib/helpers/index.js",
"types": "./lib/helpers/index.d.ts"
},
"./helpers/*": {
"import": "./lib/helpers/*.js",
"types": "./lib/helpers/*.d.ts"
},
"./nostr": {
"import": "./lib/nostr.js",
"types": "./lib/nostr.d.ts"
},
"./auth": {
"import": "./lib/auth.js",
"types": "./lib/auth.d.ts"
},
"./actions": {
"import": "./lib/actions.js",
"types": "./lib/actions.d.ts"
},
"./actions/*": {
"import": "./lib/actions/*.js",
"types": "./lib/actions/*.d.ts"
}
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@cashu/cashu-ts": "^2.1.0",
"@noble/hashes": "^1.4.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/dom": "^10.4.0",
"@types/node": "^22.5.5",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "2.1.8",
"nostr-tools": "^2.10.4",
"playwright": "^1.49.1",
"prettier": "^3.3.3",
"typedoc": "^0.25.12",
"typedoc-plugin-mermaid": "^1.12.0",
"typescript": "^5.3.3",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}