@cendor/libs 0.2.3 → 0.2.4

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 (3) hide show
  1. package/NOTICE +7 -0
  2. package/README.md +2 -0
  3. package/package.json +14 -8
package/NOTICE ADDED
@@ -0,0 +1,7 @@
1
+ PowerAI Labs
2
+ Copyright 2026 Raghav Mishra (PowerAI Labs)
3
+
4
+ This product includes software developed by Raghav Mishra (PowerAI Labs).
5
+
6
+ Licensed under the Apache License, Version 2.0. See the LICENSE file for the
7
+ full terms.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @cendor/libs
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@cendor/libs.svg)](https://www.npmjs.com/package/@cendor/libs) [![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
4
+
3
5
  All six Cendor libraries in one install — plain building blocks for LLM apps: context, cost, compression, testing, and a tamper-evident audit trail. The TypeScript port of the `cendor-libs` meta-package. One install pulls them all:
4
6
 
5
7
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cendor/libs",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "All six Cendor libraries in one install — plain building blocks for LLM apps: context, cost, compression, testing, and a tamper-evident audit trail.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -14,19 +14,21 @@
14
14
  },
15
15
  "files": [
16
16
  "dist",
17
- "README.md"
17
+ "README.md",
18
+ "LICENSE",
19
+ "NOTICE"
18
20
  ],
19
21
  "sideEffects": false,
20
22
  "engines": {
21
23
  "node": ">=18"
22
24
  },
23
25
  "dependencies": {
24
- "@cendor/acttrace": "^0.3.2",
25
- "@cendor/cassette": "^0.2.3",
26
- "@cendor/contextkit": "^1.0.3",
27
- "@cendor/core": "^0.3.2",
28
- "@cendor/squeeze": "^0.2.3",
29
- "@cendor/tokenguard": "^0.2.3"
26
+ "@cendor/acttrace": "^0.3.3",
27
+ "@cendor/cassette": "^0.2.4",
28
+ "@cendor/contextkit": "^1.0.4",
29
+ "@cendor/core": "^0.3.3",
30
+ "@cendor/squeeze": "^0.2.4",
31
+ "@cendor/tokenguard": "^0.2.4"
30
32
  },
31
33
  "keywords": [
32
34
  "llm",
@@ -39,6 +41,10 @@
39
41
  "url": "git+https://github.com/cendorhq/cendor-libs-js.git",
40
42
  "directory": "packages/libs"
41
43
  },
44
+ "homepage": "https://cendor.ai/docs",
45
+ "bugs": {
46
+ "url": "https://github.com/cendorhq/cendor-libs-js/issues"
47
+ },
42
48
  "publishConfig": {
43
49
  "access": "public"
44
50
  }