-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 934 Bytes
/
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
{
"name": "nostr-zap",
"version": "1.2.0",
"description": "Zap any Nostr npub from anywhere.",
"source": "src/index.js",
"main": "dist/main.js",
"targets": {
"main": {
"includeNodeModules": true
}
},
"scripts": {
"build": "parcel build",
"dev": "npm run build && parcel example/index.html --open",
"prepare": "npm run build",
"test": "echo TODO"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/SamSamskies/nostr-zap.git"
},
"keywords": [
"nostr",
"zap",
"bitcoin",
"lightning"
],
"author": "Sam Samskies",
"license": "MIT",
"bugs": {
"url": "https://github.com/SamSamskies/nostr-zap/issues"
},
"homepage": "https://github.com/SamSamskies/nostr-zap#readme",
"devDependencies": {
"parcel": "^2.9.3",
"prettier": "2.8.8"
},
"dependencies": {
"easyqrcodejs": "^4.4.13",
"nostr-tools": "^1.10.1"
}
}