-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 862 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 862 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
{
"name": "lightning-starter",
"version": "1.0.0",
"description": "Starter kit para Lightning Hackathons 2026 - La Crypta",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"example:invoice": "node src/examples/create-invoice.js",
"example:pay": "node src/examples/pay-invoice.js",
"example:nwc": "node src/examples/nwc-connect.js",
"example:lnurl": "node src/examples/lnurl-pay.js"
},
"keywords": ["lightning", "bitcoin", "nostr", "nwc", "hackathon", "lacrypta"],
"author": "La Crypta",
"license": "MIT",
"dependencies": {
"@getalby/lightning-tools": "^5.0.0",
"@getalby/sdk": "^3.0.0",
"@nostr-dev-kit/ndk": "^2.0.0",
"webln": "^0.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.0"
}
}