-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.22 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.22 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "nsec-tree",
"version": "1.4.3",
"description": "Deterministic Nostr sub-identity derivation from a single master secret",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js"
},
"./mnemonic": {
"types": "./dist/mnemonic.d.ts",
"import": "./dist/mnemonic.js"
},
"./proof": {
"types": "./dist/proof.d.ts",
"import": "./dist/proof.js"
},
"./persona": {
"types": "./dist/persona-barrel.d.ts",
"import": "./dist/persona-barrel.js"
},
"./encoding": {
"types": "./dist/encoding-barrel.d.ts",
"import": "./dist/encoding-barrel.js"
},
"./event": {
"types": "./dist/event-barrel.d.ts",
"import": "./dist/event-barrel.js"
}
},
"files": [
"dist",
"LICENSE",
"PROTOCOL.md",
"llms.txt"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@scure/base": "^1.2.1",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"nostr-tools": "^2.23.3",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
},
"keywords": [
"nostr",
"nsec",
"npub",
"hd-keys",
"identity",
"bip32",
"bip39",
"bip85",
"derivation",
"secp256k1",
"privacy",
"persona",
"nip-78",
"linkage-proof",
"sub-identity"
],
"homepage": "https://github.com/forgesworn/nsec-tree",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/forgesworn/nsec-tree.git"
},
"funding": {
"type": "lightning",
"url": "lightning:thedonkey@strike.me"
}
}