@forwardimpact/libutil 0.1.77 → 0.1.79

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 +5 -2
  2. package/package.json +11 -16
package/README.md CHANGED
@@ -1,7 +1,10 @@
1
1
  # libutil
2
2
 
3
- Utility functions and helpers token counting, file discovery, retries, and
4
- bundle downloading.
3
+ <!-- BEGIN:description Do not edit. Generated from package.json. -->
4
+
5
+ Cross-cutting utilities: retry, hashing, token counting, and project discovery.
6
+
7
+ <!-- END:description -->
5
8
 
6
9
  ## Getting Started
7
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@forwardimpact/libutil",
3
- "version": "0.1.77",
4
- "description": "Cross-cutting utilities for agents and services: retry with backoff, hashing, token counting, project finder, tarball downloader.",
3
+ "version": "0.1.79",
4
+ "description": "Cross-cutting utilities: retry, hashing, token counting, and project discovery.",
5
5
  "keywords": [
6
6
  "util",
7
7
  "retry",
@@ -9,16 +9,11 @@
9
9
  "tokens",
10
10
  "agent"
11
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
- ]
12
+ "homepage": "https://www.forwardimpact.team",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/forwardimpact/monorepo.git",
16
+ "directory": "libraries/libutil"
22
17
  },
23
18
  "license": "Apache-2.0",
24
19
  "author": "D. Olsson <hi@senzilla.io>",
@@ -38,10 +33,6 @@
38
33
  "bin/**/*.js",
39
34
  "README.md"
40
35
  ],
41
- "engines": {
42
- "bun": ">=1.2.0",
43
- "node": ">=18.0.0"
44
- },
45
36
  "scripts": {
46
37
  "test": "bun test test/*.test.js"
47
38
  },
@@ -52,6 +43,10 @@
52
43
  "devDependencies": {
53
44
  "@forwardimpact/libharness": "^0.1.5"
54
45
  },
46
+ "engines": {
47
+ "bun": ">=1.2.0",
48
+ "node": ">=18.0.0"
49
+ },
55
50
  "publishConfig": {
56
51
  "access": "public"
57
52
  }