@pi-unipi/milestone 2.0.7 → 2.0.9

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/commands.ts CHANGED
@@ -6,7 +6,7 @@
6
6
  * loads SKILL.md content and sends it as a user message.
7
7
  */
8
8
 
9
- import type { ExtensionAPI, ExtensionCommandContext } from "@mariozechner/pi-coding-agent";
9
+ import type { ExtensionAPI, ExtensionCommandContext } from "@earendil-works/pi-coding-agent";
10
10
  import { UNIPI_PREFIX, MILESTONE_COMMANDS, MILESTONE_DIRS } from "@pi-unipi/core";
11
11
  import { parseMilestones } from "./milestone.js";
12
12
  import { readFileSync } from "node:fs";
package/hooks.ts CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  import * as fs from "node:fs";
9
9
  import * as path from "node:path";
10
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
10
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
11
11
  import { MILESTONE_DIRS, safeMtimeMs, tryRead } from "@pi-unipi/core";
12
12
  import { parseMilestones, getProgressSummary, updateItemStatus } from "./milestone.js";
13
13
 
package/index.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * injects context on session start, auto-syncs on session end.
6
6
  */
7
7
 
8
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
8
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
9
9
  import { MODULES, MILESTONE_COMMANDS, MILESTONE_DIRS, emitEvent, UNIPI_EVENTS } from "@pi-unipi/core";
10
10
  import { registerSessionStartHook, registerSessionEndHook } from "./hooks.js";
11
11
  import { registerCommands } from "./commands.js";
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@pi-unipi/milestone",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "description": "Lifecycle layer for project-level goals — MILESTONES.md tracking, session hooks, auto-sync",
5
5
  "type": "module",
6
+ "main": "index.ts",
6
7
  "license": "MIT",
7
8
  "author": "Neuron Mr White",
8
9
  "repository": {
@@ -39,9 +40,9 @@
39
40
  "@pi-unipi/core": "*"
40
41
  },
41
42
  "peerDependencies": {
42
- "@mariozechner/pi-coding-agent": "*",
43
- "@mariozechner/pi-tui": "*",
44
- "@sinclair/typebox": "*"
43
+ "@earendil-works/pi-coding-agent": "^0.75.5",
44
+ "@earendil-works/pi-tui": "^0.75.5",
45
+ "typebox": "^1.1.38"
45
46
  },
46
47
  "devDependencies": {
47
48
  "@types/node": "^25.6.0",