@theholocron/cli 3.3.14 → 3.4.0

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/dist/index.d.mts CHANGED
@@ -83,6 +83,8 @@ interface HolocronConfig {
83
83
  /** Project name. Derived from package.json when absent. */
84
84
  name?: string;
85
85
  description?: string;
86
+ /** Project homepage URL. Synced to package.json#homepage and the GitHub repo's website field by `holocron sync`. */
87
+ homepage?: string;
86
88
  /**
87
89
  * Repository identity and metadata. When set, `PluginLoader` injects
88
90
  * `repo.name` into every plugin's `RuntimeContext.repo` so plugins that
@@ -146,6 +148,7 @@ type ResolvedProvidersConfig = Partial<Record<CapabilityKey, ResolvedProviderEnt
146
148
  interface ResolvedHolocronConfig {
147
149
  name: string;
148
150
  description?: string;
151
+ homepage?: string;
149
152
  repo?: RepoConfig;
150
153
  workflows?: Array<string | {
151
154
  name: string;
package/dist/index.mjs CHANGED
@@ -223,6 +223,7 @@ function resolveConfig(raw) {
223
223
  return {
224
224
  name: raw.name,
225
225
  description: raw.description,
226
+ homepage: raw.homepage,
226
227
  repo: raw.repo,
227
228
  workflows: raw.workflows,
228
229
  providers,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/cli",
3
- "version": "3.3.14",
3
+ "version": "3.4.0",
4
4
  "description": "The Holocron CLI — a pluggable, capability-based orchestrator for spinning up and operating software projects.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/cli#readme",
6
6
  "bugs": "https://github.com/theholocron/holocron/issues",