@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.
- package/README.md +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @semiont/core
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@semiont/core)
|
|
4
|
+
[](https://www.npmjs.com/package/@semiont/core)
|
|
5
|
+
[](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
|