-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "@cloudflare/opaque-ts",
"version": "0.9.0",
"description": "OPAQUE: Asymmetric Password-Authenticated Key Exchange in Typescript",
"author": "Armando Faz <armfazh@cloudflare.com>",
"maintainers": [
"Armando Faz <armfazh@cloudflare.com>"
],
"license": "BSD-3-Clause",
"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": [
"opaque",
"password",
"key exchange",
"crypto",
"cryptography"
],
"homepage": "https://github.com/cloudflare/opaque-ts#readme",
"repository": "github:cloudflare/opaque-ts",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "9.6.0",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@types/jest": "29.5.12",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-security": "3.0.1",
"jest": "29.7.0",
"prettier": "3.3.2",
"rollup": "4.22.4",
"typescript": "5.5.3",
"typescript-eslint": "7.15.0"
},
"scripts": {
"prepack": "tsc -b",
"prepare": "tsc -b",
"build": "tsc -b",
"clean": "tsc -b --clean . test",
"test": "tsc -b test && node --experimental-vm-modules ./node_modules/jest/bin/jest.js --ci --no-cache",
"lint": "eslint .",
"format": "prettier './(src|test)/*.ts' --write",
"filesbundle": "rollup -c"
},
"dependencies": {
"@cloudflare/voprf-ts": "0.21.2",
"@noble/hashes": "1.4.0"
}
}