-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
{
"name": "@forgesworn/range-proof",
"version": "1.0.4",
"description": "Pedersen commitment range proofs on secp256k1 — prove a value is in range without revealing it",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "node node_modules/vitest/vitest.mjs run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"range-proof",
"pedersen",
"commitment",
"secp256k1",
"zero-knowledge",
"privacy",
"age-verification"
],
"author": "Darren",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/forgesworn/range-proof.git"
},
"dependencies": {
"@noble/curves": "^1.8.1",
"@noble/hashes": "^1.7.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"semantic-release": "^25.0.3",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"funding": {
"type": "lightning",
"url": "lightning:thedonkey@strike.me"
}
}