-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.65 KB
/
package.json
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
{
"name": "ring-signatures",
"version": "1.0.7",
"description": "Pure JavaScript Ring Signatures",
"files": [
"*.js",
"*.js.map",
"*.d.ts",
"*.d.ts.map"
],
"author": "beritani",
"license": "MIT",
"main": "build/index.js",
"repository": {
"url": "https://github.com/beritani/ring-signatures",
"type": "git"
},
"scripts": {
"test": "jest --maxWorkers=1",
"build": "tsc",
"build:clean": "rm *.{js,d.ts,d.ts.map} 2>/dev/null || true",
"lint": "prettier --check 'src/**/*.{js,ts}'",
"fmt": "prettier --write 'src/**/*.{js,ts}'",
"prepublish": "yarn build:clean && yarn build",
"postpublish": "yarn build:clean"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"isolatedModules": true
}
]
}
},
"dependencies": {
"@noble/curves": "^1.1.0",
"@noble/hashes": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"exports": {
"./utils": {
"types": "./utils.d.ts",
"default": "./utils.js"
},
"./SAG": {
"types": "./SAG.d.ts",
"default": "./SAG.js"
},
"./bLSAG": {
"types": "./bLSAG.d.ts",
"default": "./bLSAG.js"
},
"./MLSAG": {
"types": "./MLSAG.d.ts",
"default": "./MLSAG.js"
}
},
"keywords": [
"elliptic",
"curve",
"cryptography",
"edwards",
"ed25519",
"ed448",
"x25519",
"ed25519",
"ecc",
"schnorr",
"ring",
"signatures",
"monero",
"privacy"
]
}