@cendor/libs 0.2.2 → 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.
- package/NOTICE +7 -0
- package/README.md +3 -2
- package/package.json +14 -8
package/NOTICE
ADDED
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# @cendor/libs
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@cendor/libs) [](https://opensource.org/licenses/Apache-2.0)
|
|
4
|
+
|
|
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:
|
|
5
6
|
|
|
6
7
|
```bash
|
|
7
8
|
npm i @cendor/libs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cendor/libs",
|
|
3
|
-
"version": "0.2.
|
|
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.
|
|
25
|
-
"@cendor/cassette": "^0.2.
|
|
26
|
-
"@cendor/contextkit": "^1.0.
|
|
27
|
-
"@cendor/core": "^0.3.
|
|
28
|
-
"@cendor/squeeze": "^0.2.
|
|
29
|
-
"@cendor/tokenguard": "^0.2.
|
|
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
|
}
|