@cheqd/did-provider-cheqd 1.7.0 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -5
- package/package.json +33 -33
package/README.md
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
# Veramo SDK plugin for cheqd DID method
|
|
2
2
|
|
|
3
|
-
[](https://github.com/cheqd/did-provider-cheqd/releases/latest)  [](https://github.com/cheqd/did-provider-cheqd/blob/main/LICENSE)
|
|
4
4
|
|
|
5
|
-
[](https://github.com/cheqd/did-provider-cheqd/releases/)  [](https://github.com/cheqd/did-provider-cheqd/graphs/contributors)
|
|
6
6
|
|
|
7
|
-
[](https://github.com/cheqd/did-provider-cheqd/graphs/contributors) 
|
|
7
|
+
[](https://github.com/cheqd/did-provider-cheqd/actions/workflows/dispatch.yml) [](https://github.com/cheqd/did-provider-cheqd/actions/workflows/codeql.yml) 
|
|
10
8
|
|
|
11
9
|
## ℹ️ Overview
|
|
12
10
|
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cheqd/did-provider-cheqd",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "Veramo SDK plugin for the did:cheqd DID method",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
-
"source": "src/index.ts",
|
|
7
|
-
"main": "build/index.js",
|
|
8
|
-
"types": "build/index.d.ts",
|
|
9
6
|
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
|
|
10
7
|
"repository": "https://github.com/cheqd/did-provider-cheqd.git",
|
|
11
8
|
"bugs": {
|
|
12
9
|
"url": "https://github.com/cheqd/did-provider-cheqd/issues"
|
|
13
10
|
},
|
|
14
11
|
"homepage": "https://github.com/cheqd/did-provider-cheqd#readme",
|
|
12
|
+
"source": "src/index.ts",
|
|
13
|
+
"main": "build/index.js",
|
|
14
|
+
"types": "build/index.d.ts",
|
|
15
15
|
"veramo": {
|
|
16
16
|
"pluginInterfaces": {
|
|
17
17
|
"ICheqd": "./src/agent/ICheqd.ts"
|
|
@@ -29,6 +29,14 @@
|
|
|
29
29
|
"lint": "eslint --max-warnings=0 src",
|
|
30
30
|
"semantic": "npx semantic-release"
|
|
31
31
|
},
|
|
32
|
+
"files": [
|
|
33
|
+
"build/**/*",
|
|
34
|
+
"src/**/*",
|
|
35
|
+
"README.md",
|
|
36
|
+
"plugin.schema.json",
|
|
37
|
+
"LICENSE",
|
|
38
|
+
"tsconfig.json"
|
|
39
|
+
],
|
|
32
40
|
"eslintConfig": {
|
|
33
41
|
"root": true,
|
|
34
42
|
"extends": [
|
|
@@ -36,50 +44,42 @@
|
|
|
36
44
|
"prettier"
|
|
37
45
|
]
|
|
38
46
|
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@cheqd/sdk": "^1.3.0",
|
|
49
|
+
"@cheqd/ts-proto": "^1.0.13",
|
|
50
|
+
"@cosmjs/proto-signing": "^0.28.11",
|
|
51
|
+
"@cosmjs/utils": "^0.28.11",
|
|
52
|
+
"@veramo/core": "^3.1.6-next.167",
|
|
53
|
+
"@veramo/did-manager": "^3.1.6-next.167",
|
|
54
|
+
"@veramo/did-provider-key": "^3.1.3",
|
|
55
|
+
"@veramo/key-manager": "^3.1.6-next.167",
|
|
56
|
+
"debug": "^4.3.4",
|
|
57
|
+
"multibase": "^4.0.6",
|
|
58
|
+
"multicodec": "^3.2.1",
|
|
59
|
+
"uint8arrays": "^3.1.0"
|
|
60
|
+
},
|
|
39
61
|
"devDependencies": {
|
|
40
62
|
"@semantic-release/changelog": "^6.0.1",
|
|
41
63
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
42
64
|
"@semantic-release/git": "^10.0.1",
|
|
43
|
-
"@semantic-release/github": "^8.0.
|
|
65
|
+
"@semantic-release/github": "^8.0.6",
|
|
44
66
|
"@semantic-release/npm": "^9.0.1",
|
|
45
67
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
46
68
|
"@types/debug": "^4.1.7",
|
|
47
69
|
"@types/jest": "27.5.1",
|
|
48
70
|
"@types/uuid": "^8.3.4",
|
|
49
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
50
|
-
"@typescript-eslint/parser": "^5.
|
|
51
|
-
"@veramo/cli": "^
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^5.39.0",
|
|
72
|
+
"@typescript-eslint/parser": "^5.39.0",
|
|
73
|
+
"@veramo/cli": "^4.0.2",
|
|
52
74
|
"conventional-changelog-conventionalcommits": "^5.0.0",
|
|
53
|
-
"eslint": "^8.
|
|
75
|
+
"eslint": "^8.24.0",
|
|
54
76
|
"eslint-config-prettier": "^8.5.0",
|
|
55
77
|
"eslint-config-typescript": "^3.0.0",
|
|
56
78
|
"jest": "27.5.1",
|
|
57
79
|
"prettier": "^2.7.1",
|
|
58
|
-
"semantic-release": "^19.0.
|
|
80
|
+
"semantic-release": "^19.0.5",
|
|
59
81
|
"ts-jest": "^27.1.5",
|
|
60
|
-
"typescript": "^4.
|
|
61
|
-
},
|
|
62
|
-
"files": [
|
|
63
|
-
"build/**/*",
|
|
64
|
-
"src/**/*",
|
|
65
|
-
"README.md",
|
|
66
|
-
"plugin.schema.json",
|
|
67
|
-
"LICENSE",
|
|
68
|
-
"tsconfig.json"
|
|
69
|
-
],
|
|
70
|
-
"dependencies": {
|
|
71
|
-
"@cheqd/sdk": "^1.3.0",
|
|
72
|
-
"@cheqd/ts-proto": "^1.0.12",
|
|
73
|
-
"@cosmjs/proto-signing": "^0.28.11",
|
|
74
|
-
"@cosmjs/utils": "^0.28.11",
|
|
75
|
-
"@veramo/core": "^3.1.6-next.167",
|
|
76
|
-
"@veramo/did-manager": "^3.1.6-next.167",
|
|
77
|
-
"@veramo/did-provider-key": "^3.1.3",
|
|
78
|
-
"@veramo/key-manager": "^3.1.6-next.167",
|
|
79
|
-
"debug": "^4.3.4",
|
|
80
|
-
"multibase": "^4.0.6",
|
|
81
|
-
"multicodec": "^3.2.1",
|
|
82
|
-
"uint8arrays": "^3.1.0"
|
|
82
|
+
"typescript": "^4.8.4"
|
|
83
83
|
},
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"registry": "https://registry.npmjs.org/",
|