@aarmos/avar-core 1.0.0-rc.2 → 1.0.0-rc.3
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 +4 -4
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# @aarmos/avar-core
|
|
2
2
|
|
|
3
|
-
Reference implementation of the [AVAR specification](
|
|
3
|
+
Reference implementation of the [AVAR specification](https://www.aarmos.io/docs/avar-spec) — canonical JSON, Ed25519 signature verification, hash-chain math, and bundle verification.
|
|
4
4
|
|
|
5
5
|
**Pure.** No DOM references, no Node built-ins, no external dependencies. Runs identically in browsers (WebCrypto) and Node.js 20+ (`globalThis.crypto.subtle`).
|
|
6
6
|
|
|
7
7
|
**Normative.** Consumed by:
|
|
8
|
-
- The Aarmos PWA at `/trust/verify` (browser drop-zone).
|
|
9
|
-
- The `aarmos verify` CLI in [
|
|
8
|
+
- The Aarmos PWA at [`/trust/verify`](https://www.aarmos.io/trust/verify) (browser drop-zone).
|
|
9
|
+
- The `aarmos verify` CLI in [`@aarmos/bridge`](https://www.npmjs.com/package/@aarmos/bridge).
|
|
10
10
|
- The internal recorder in `src/lib/avar/` (chain + signature production).
|
|
11
11
|
|
|
12
12
|
All three call the same `verifyBundle()`. Divergence between them is guarded by the golden fixtures in [`test/fixtures/`](./test/fixtures/) — see spec §9.
|
|
@@ -31,4 +31,4 @@ import {
|
|
|
31
31
|
|
|
32
32
|
## Spec revision
|
|
33
33
|
|
|
34
|
-
Tracks `avar/1` spec revision `1.0-rc1`. See [
|
|
34
|
+
Tracks `avar/1` spec revision `1.0-rc1`. See the [AVAR spec](https://www.aarmos.io/docs/avar-spec) for the current revision and changelog.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarmos/avar-core",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.3",
|
|
4
4
|
"description": "Reference implementation of the AVAR (Aarmos Verifiable Action Record) spec — canonical JSON, Ed25519 signature verification, hash-chain math, and bundle verification. Pure, zero-dep, browser + Node.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
"verifier"
|
|
31
31
|
],
|
|
32
32
|
"license": "MIT",
|
|
33
|
+
"author": "Aarmatix LLC",
|
|
34
|
+
"homepage": "https://www.aarmos.io/docs/avar-spec",
|
|
33
35
|
"publishConfig": {
|
|
34
36
|
"access": "public"
|
|
35
37
|
},
|