-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "@veramo/credential-ld",
"description": "Veramo plugin for working with W3C JSON-LD Verifiable Credentials & Presentations.",
"version": "3.1.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"generate-plugin-schema": "yarn veramo dev generate-plugin-schema"
},
"veramo": {
"pluginInterfaces": {
"ICredentialIssuerLD": "./src/action-handler.ts"
}
},
"dependencies": {
"@transmute/credentials-context": "^0.7.0-unstable.34",
"@transmute/ed25519-signature-2018": "^0.7.0-unstable.34",
"@transmute/lds-ecdsa-secp256k1-recovery2020": "^0.0.7",
"@veramo/core": "^3.1.0",
"@veramo/did-resolver": "^3.1.0",
"@veramo/utils": "^3.1.0",
"debug": "^4.3.3",
"did-resolver": "^3.1.5",
"jsonld": "^5.2.0",
"jsonld-signatures": "^9.3.1",
"uint8arrays": "^3.0.0",
"vc-js": "^0.6.4"
},
"devDependencies": {
"@types/debug": "4.1.7",
"borc": "3.0.0",
"typescript": "4.6.4"
},
"files": [
"build/**/*",
"src/**/*",
"contexts/**/*.jsonld",
"plugin.schema.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": "[email protected]:uport-project/veramo.git",
"author": "Mircea Nistor <[email protected]>",
"license": "Apache-2.0",
"keywords": []
}