@forwardimpact/libutil 0.1.75 → 0.1.77
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/package.json +21 -3
package/package.json
CHANGED
|
@@ -1,7 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forwardimpact/libutil",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.77",
|
|
4
|
+
"description": "Cross-cutting utilities for agents and services: retry with backoff, hashing, token counting, project finder, tarball downloader.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"util",
|
|
7
|
+
"retry",
|
|
8
|
+
"hash",
|
|
9
|
+
"tokens",
|
|
10
|
+
"agent"
|
|
11
|
+
],
|
|
12
|
+
"forwardimpact": {
|
|
13
|
+
"capability": "foundations",
|
|
14
|
+
"needs": [
|
|
15
|
+
"Compute a stable hash (SHA-256 checksum)",
|
|
16
|
+
"Count LLM tokens",
|
|
17
|
+
"Find the project root",
|
|
18
|
+
"Retry a flaky network call",
|
|
19
|
+
"Download and extract a tarball",
|
|
20
|
+
"Generate a UUID"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
5
23
|
"license": "Apache-2.0",
|
|
6
24
|
"author": "D. Olsson <hi@senzilla.io>",
|
|
7
25
|
"type": "module",
|
|
@@ -25,7 +43,7 @@
|
|
|
25
43
|
"node": ">=18.0.0"
|
|
26
44
|
},
|
|
27
45
|
"scripts": {
|
|
28
|
-
"test": "bun
|
|
46
|
+
"test": "bun test test/*.test.js"
|
|
29
47
|
},
|
|
30
48
|
"dependencies": {
|
|
31
49
|
"@forwardimpact/libcli": "^0.1.0",
|