-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
64 lines (64 loc) · 1.43 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
{
"name": "@veramo/utils",
"description": "Helper methods for Veramo plugins",
"version": "5.5.3",
"main": "build/index.js",
"exports": "./build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"extract-api": "node ../cli/bin/veramo.js dev extract-api"
},
"dependencies": {
"@ipld/dag-pb": "^4.0.5",
"@noble/curves": "^1.1.0",
"@veramo/core-types": "workspace:^",
"credential-status": "^2.0.5",
"cross-fetch": "^4.0.0",
"debug": "^4.3.3",
"did-jwt": "^7.4.1",
"did-jwt-vc": "^3.2.10",
"did-resolver": "^4.1.0",
"ipfs-unixfs": "^11.1.0",
"multiformats": "^12.0.1",
"uint8arrays": "^4.0.6"
},
"devDependencies": {
"@types/debug": "4.1.8",
"@types/uuid": "9.0.2"
},
"files": [
"build/**/*",
"src/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/veramo.git",
"directory": "packages/utils"
},
"author": "Consensys Mesh R&D <[email protected]>",
"contributors": [
"Mircea Nistor <[email protected]>",
"Simonas Karuzas <[email protected]>"
],
"keywords": [
"Veramo",
"DID",
"Verifiable Credential",
"veramo-plugin",
"utils",
"encoding",
"crypto"
],
"license": "Apache-2.0",
"type": "module",
"moduleDirectories": [
"node_modules",
"src"
]
}