@semiont/core 0.1.0-build.2 → 0.1.0-build.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @semiont/core
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@semiont/core.svg)](https://www.npmjs.com/package/@semiont/core)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@semiont/core.svg)](https://www.npmjs.com/package/@semiont/core)
5
+ [![License](https://img.shields.io/npm/l/@semiont/core.svg)](https://github.com/The-AI-Alliance/semiont/blob/main/LICENSE)
6
+
3
7
  Backend domain logic for the Semiont semantic knowledge platform. This package provides **internal backend utilities** for event sourcing, cryptography, DID generation, and type guards.
4
8
 
5
9
  > ⚠️ **Not for External Use**: If you're building applications that consume the Semiont API, use [`@semiont/api-client`](../api-client/README.md) instead. This package is for **backend internal use only**.
@@ -19,10 +23,18 @@ Backend domain logic for the Semiont semantic knowledge platform. This package p
19
23
 
20
24
  ## Installation
21
25
 
26
+ Install the latest stable release from npm:
27
+
22
28
  ```bash
23
29
  npm install @semiont/core
24
30
  ```
25
31
 
32
+ Or install the latest development build:
33
+
34
+ ```bash
35
+ npm install @semiont/core@dev
36
+ ```
37
+
26
38
  ## What's Included
27
39
 
28
40
  ### Event Sourcing Types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@semiont/core",
3
- "version": "0.1.0-build.2",
3
+ "version": "0.1.0-build.3",
4
4
  "description": "Core domain types for Semiont - Document, Annotation, and Graph models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",