@forwardimpact/libutil 0.1.77 → 0.1.78

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 (1) hide show
  1. package/package.json +13 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/libutil",
3
- "version": "0.1.77",
3
+ "version": "0.1.78",
4
4
  "description": "Cross-cutting utilities for agents and services: retry with backoff, hashing, token counting, project finder, tarball downloader.",
5
5
  "keywords": [
6
6
  "util",
@@ -9,6 +9,14 @@
9
9
  "tokens",
10
10
  "agent"
11
11
  ],
12
+ "homepage": "https://www.forwardimpact.team",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/forwardimpact/monorepo.git",
16
+ "directory": "libraries/libutil"
17
+ },
18
+ "license": "Apache-2.0",
19
+ "author": "D. Olsson <hi@senzilla.io>",
12
20
  "forwardimpact": {
13
21
  "capability": "foundations",
14
22
  "needs": [
@@ -20,8 +28,6 @@
20
28
  "Generate a UUID"
21
29
  ]
22
30
  },
23
- "license": "Apache-2.0",
24
- "author": "D. Olsson <hi@senzilla.io>",
25
31
  "type": "module",
26
32
  "main": "./src/index.js",
27
33
  "exports": {
@@ -38,10 +44,6 @@
38
44
  "bin/**/*.js",
39
45
  "README.md"
40
46
  ],
41
- "engines": {
42
- "bun": ">=1.2.0",
43
- "node": ">=18.0.0"
44
- },
45
47
  "scripts": {
46
48
  "test": "bun test test/*.test.js"
47
49
  },
@@ -52,6 +54,10 @@
52
54
  "devDependencies": {
53
55
  "@forwardimpact/libharness": "^0.1.5"
54
56
  },
57
+ "engines": {
58
+ "bun": ">=1.2.0",
59
+ "node": ">=18.0.0"
60
+ },
55
61
  "publishConfig": {
56
62
  "access": "public"
57
63
  }