-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
{
"name": "@cloudflare/privacypass-ts",
"version": "0.7.1",
"description": "privacypass-ts: A TypeScript Library for the Privacy Pass Issuance Protocol",
"author": "Armando Faz <armfazh@cloudflare.com>",
"contributors": [
"Armando Faz <armfazh@cloudflare.com>",
"Thibault Meunier <thibault@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": [
"crypto",
"cryptography",
"privacypass",
"token"
],
"homepage": "https://github.com/cloudflare/privacypass-ts#readme",
"repository": "github:cloudflare/privacypass-ts",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -b",
"test": "tsc -b test && vitest --run",
"lint": "eslint .",
"format": "prettier './(src|test|bench|examples)/**/*.ts' --write",
"bench": "tsc -b bench && node ./lib/bench/index.js",
"examples": "tsc -b examples && node ./lib/examples/index.js",
"clean": "tsc -b --clean && rimraf lib coverage dist"
},
"dependencies": {
"@cloudflare/blindrsa-ts": "0.4.3",
"@cloudflare/voprf-ts": "1.0.0",
"asn1-parser": "1.1.8",
"asn1js": "3.0.5",
"quicvarint": "0.1.4",
"rfc4648": "1.5.3"
},
"devDependencies": {
"@eslint/js": "9.9.1",
"@types/benchmark": "2.1.5",
"@vitest/coverage-v8": "3.0.7",
"benchmark": "2.1.4",
"eslint": "8.57.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.5.4",
"typescript-eslint": "8.26.0",
"vitest": "3.0.7"
}
}