-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.2 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
{
"name": "nostr-zap-view",
"version": "1.3.6",
"description": "View any nostr npub or note zaps from anywhere.",
"main": "./dist/nostr-zap-view.js",
"module": "./dist/nostr-zap-view.esm.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/nostr-zap-view.esm.js",
"require": "./dist/nostr-zap-view.js"
}
},
"author": "Lokuyow",
"license": "MIT",
"homepage": "https://lokuyow.github.io/",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "jest",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lokuyow/nostr-zap-view.git"
},
"keywords": [
"nostr",
"zap",
"bitcoin",
"lightning"
],
"bugs": {
"url": "https://github.com/Lokuyow/nostr-zap-view/issues"
},
"dependencies": {
"light-bolt11-decoder": "^3.2.0",
"nostr-tools": "^2.10.4"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^7.1.2",
"to-string-loader": "^1.2.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"files": [
"dist/",
"/LICENSE",
"THIRD_PARTY_LICENSES.txt"
]
}