-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.28 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": "@sphereon/ssi-sdk-ext.key-manager",
"description": "Sphereon Key Manager plugin with BLS support",
"version": "0.25.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"veramo": {
"pluginInterfaces": {
"ISphereonKeyManager": "./src/types/ISphereonKeyManager.ts"
}
},
"scripts": {
"build": "tsc --build",
"generate-plugin-schema": "sphereon dev generate-plugin-schema"
},
"dependencies": {
"@veramo/core": "4.2.0",
"@veramo/key-manager": "4.2.0",
"uint8arrays": "^3.1.1"
},
"devDependencies": {
"@mattrglobal/bbs-signatures": "^1.3.1",
"@sphereon/ssi-sdk-ext.key-utils": "workspace:*",
"@sphereon/ssi-sdk-ext.kms-local": "workspace:*",
"@sphereon/ssi-sdk.dev": "0.30.1"
},
"resolutions": {
"jsonld": "npm:@digitalcredentials/jsonld@^5.2.1",
"jsonld-signatures": "npm:@digitalcredentials/jsonld-signatures@^9.3.1"
},
"files": [
"dist/**/*",
"src/**/*",
"plugin.schema.json",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": "[email protected]:Sphereon-OpenSource/SSI-SDK-crypto-extensions.git",
"author": "Sphereon <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"SSI",
"kms",
"Veramo"
]
}