-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "@antisys/splitsig",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"version": "0.1.0",
"description": "Non-custodial key derivation from LNURL-auth signatures",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "tsc",
"test": "node --test test/splitsig.test.js",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"bitcoin", "lightning", "lnurl", "lnurl-auth",
"nostr", "key-derivation", "non-custodial",
"secp256k1", "ecdsa", "schnorr", "splitsig"
],
"author": "Ralf Dittmer <ralf@antisys.io>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Antisys/splitsig"
},
"homepage": "https://github.com/Antisys/splitsig",
"dependencies": {
"@noble/hashes": "^1.7.1",
"@noble/secp256k1": "^2.2.3"
},
"devDependencies": {
"typescript": "^5.7.0"
}
}