@axtary/ledger 0.3.0 → 0.4.0
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 +2 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Append-only JSONL action ledger with hash-chain verification for Axtary.
|
|
|
4
4
|
|
|
5
5
|
Early `0.x` release: the runtime path is real and tested, but the API is not stable yet and may change between minor versions.
|
|
6
6
|
|
|
7
|
+
The source repository is currently private. Public product documentation and runnable guides are at [axtary.com/docs](https://www.axtary.com/docs).
|
|
8
|
+
|
|
7
9
|
```bash
|
|
8
10
|
npm install @axtary/ledger
|
|
9
11
|
```
|
package/dist/version.d.ts
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* this in lockstep with every @axtary/* manifest so surfaces that report a
|
|
4
4
|
* version (e.g. the OTLP resource `service.version`) never drift from npm.
|
|
5
5
|
*/
|
|
6
|
-
export declare const LEDGER_PACKAGE_VERSION = "0.
|
|
6
|
+
export declare const LEDGER_PACKAGE_VERSION = "0.4.0";
|
|
7
7
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* this in lockstep with every @axtary/* manifest so surfaces that report a
|
|
4
4
|
* version (e.g. the OTLP resource `service.version`) never drift from npm.
|
|
5
5
|
*/
|
|
6
|
-
export const LEDGER_PACKAGE_VERSION = "0.
|
|
6
|
+
export const LEDGER_PACKAGE_VERSION = "0.4.0";
|
|
7
7
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axtary/ledger",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Append-only JSONL action ledger with hash-chain verification for Axtary.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
10
|
+
"url": "git+https://github.com/Axtary/axtary.git",
|
|
11
11
|
"directory": "packages/ledger"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"types": "./dist/index.d.ts",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@axtary/actionpass": "^0.
|
|
43
|
+
"@axtary/actionpass": "^0.4.0",
|
|
44
44
|
"jose": "^6.2.3",
|
|
45
45
|
"proper-lockfile": "^4.1.2",
|
|
46
46
|
"zod": "^4.4.3"
|