-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "multikey-webcrypto",
"version": "0.5.1",
"date": "2024-08-26",
"description": "Conversions to and from multikeys and WebCrypto, using the EC curves defined for Verifiable Credentials.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dist": "tsc -d",
"docs": "./node_modules/.bin/typedoc index.ts lib/*",
"test_jwk": "./node_modules/.bin/ts-node tests/roundtrip_jwk.ts",
"test_s_jwk": "./node_modules/.bin/ts-node tests/roundtrip_s_jwk.ts",
"test_cry": "./node_modules/.bin/ts-node tests/roundtrip_cry.ts",
"test_s_cry": "./node_modules/.bin/ts-node tests/roundtrip_s_cry.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iherman/multikey-webcrypto.git"
},
"keywords": [
"security",
"crypto",
"verifiable credentials"
],
"author": "Ivan Herman <[email protected]> (https://www.w3.org/People/Ivan/)",
"license": "W3C-20150513",
"bugs": {
"url": "https://github.com/iherman/multikey-webcrypto/issues"
},
"homepage": "https://github.com/iherman/multikey-webcrypto#readme",
"files": [
"LICENSE.md",
"README.md",
"dist/**/*"
],
"engines": {
"node": ">=22.6.0"
},
"dependencies": {
"@noble/curves": "^1.5.0"
},
"devDependencies": {
"@types/node": "^22.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typedoc-material-theme": "^1.1.0",
"typedoc-theme-hierarchy": "^5.0.3",
"typescript": "^5.5.4"
}
}