@agentplat/mesh-crypto 0.3.0-beta.6 → 0.3.0-beta.7
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 +13 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
Provider-neutral Web Crypto contracts for hashing, signing and verifying
|
|
4
4
|
AgentPlat Mesh envelopes.
|
|
5
5
|
|
|
6
|
+
## Installation (developer preview)
|
|
7
|
+
|
|
8
|
+
Install the coordinated preview explicitly:
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
npm install @agentplat/mesh-crypto@next
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Keep all `@agentplat/*` packages on the same release version. npm's default
|
|
15
|
+
`latest` tag can point to an older preview. See the
|
|
16
|
+
[release channels](https://github.com/Agentplat/agentplat/blob/main/docs/release-channels.md)
|
|
17
|
+
for distribution status and version selection.
|
|
18
|
+
|
|
6
19
|
The Alpha 1 implementation provides:
|
|
7
20
|
|
|
8
21
|
- canonical SHA-256 payload digests;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentplat/mesh-crypto",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.7",
|
|
4
4
|
"description": "Web Crypto signing and verification contracts for AgentPlat Mesh envelopes.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"README.md"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@agentplat/mesh-protocol": "^0.3.0-beta.
|
|
22
|
+
"@agentplat/mesh-protocol": "^0.3.0-beta.7"
|
|
23
23
|
},
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=20.19.3"
|