-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
{
"name": "@cloudflare/blindrsa-ts",
"version": "0.4.3",
"description": "blindrsa-ts: A TypeScript Library for the Blind RSA Signature Protocol",
"author": "Armando Faz <armfazh@cloudflare.com>",
"maintainers": [
"Armando Faz <armfazh@cloudflare.com>"
],
"license": "Apache-2.0",
"private": false,
"type": "module",
"main": "./lib/src/index.js",
"module": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"files": [
"lib/src/**/*.!(tsbuildinfo)"
],
"keywords": [
"rsa",
"blindrsa",
"signature",
"crypto",
"cryptography"
],
"homepage": "https://github.com/cloudflare/blindrsa-ts#readme",
"repository": "github:cloudflare/blindrsa-ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -b && cp src/sjcl/index.d.ts lib/src/sjcl/index.d.ts",
"test": "tsc -b test && vitest --run",
"lint": "eslint .",
"format": "prettier './(src|test|examples)/**/!(*.d).ts' --write",
"bench": "tsc -b bench && node ./lib/bench/index.js",
"examples": "tsc -b examples && node ./lib/examples/index.js",
"clean": "rimraf lib coverage"
},
"dependencies": {
"sjcl": "1.0.8"
},
"devDependencies": {
"@eslint/js": "9.11.1",
"@types/benchmark": "2.1.5",
"@vitest/coverage-v8": "3.0.7",
"benchmark": "2.1.4",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-vitest": "0.5.4",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.6.2",
"typescript-eslint": "8.8.0",
"vitest": "3.0.7"
}
}