@forwardimpact/outpost 3.1.1 → 3.1.3
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/bin/fit-outpost.js +3 -1
- package/package.json +4 -3
- package/src/index.js +2 -2
package/bin/fit-outpost.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forwardimpact/outpost",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"description": "Personal operations center — context from email, calendar, and knowledge assembled so preparation is continuous, not a morning scramble.",
|
|
5
5
|
"homepage": "https://www.forwardimpact.team",
|
|
6
6
|
"repository": {
|
|
@@ -51,14 +51,15 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@forwardimpact/libcli": "^0.1.0",
|
|
53
53
|
"@forwardimpact/libmacos": "^0.1.0",
|
|
54
|
+
"@forwardimpact/libpreflight": "^0.1.0",
|
|
54
55
|
"@forwardimpact/libtelemetry": "^0.1.33"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@forwardimpact/
|
|
58
|
+
"@forwardimpact/libmock": "^0.1.0"
|
|
58
59
|
},
|
|
59
60
|
"engines": {
|
|
60
61
|
"bun": ">=1.2.0",
|
|
61
|
-
"node": ">=
|
|
62
|
+
"node": ">=22.0.0"
|
|
62
63
|
},
|
|
63
64
|
"publishConfig": {
|
|
64
65
|
"access": "public"
|
package/src/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Public entry point for @forwardimpact/outpost.
|
|
2
2
|
// Outpost is primarily a CLI — this file exists so the package conforms
|
|
3
|
-
// to the repo-wide layout contract
|
|
4
|
-
//
|
|
3
|
+
// to the repo-wide layout contract. The runtime CLI dispatch lives in
|
|
4
|
+
// src/outpost.js.
|
|
5
5
|
export * from "./outpost.js";
|