-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.57 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.57 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
{
"name": "signet-protocol",
"version": "1.6.0",
"description": "Decentralised identity verification protocol for Nostr",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"keywords": [
"nostr",
"identity",
"verification",
"zkp",
"signet",
"web-of-trust",
"age-verification",
"zero-knowledge-proofs",
"child-safety",
"privacy",
"decentralised-identity",
"ring-signatures",
"pedersen-range-proofs",
"secp256k1"
],
"sideEffects": false,
"license": "MIT",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "https://github.com/forgesworn/signet.git"
},
"dependencies": {
"@forgesworn/range-proof": "^2.0.0",
"@forgesworn/ring-sig": "^3.0.0",
"@forgesworn/shamir-words": "^1.0.0",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@scure/bip39": "^2.0.1",
"jurisdiction-kit": "^1.0.0",
"nostr-attestations": "^2.3.1",
"nsec-tree": "^1.4.1",
"spoken-token": "^2.0.3"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"funding": {
"type": "lightning",
"url": "lightning:thedonkey@strike.me"
}
}