@kky42/pi-goal 1.0.0 → 1.0.1

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 1.0.1 - 2026-05-30
6
+
7
+ - Exposes the extension through a root `index.ts` package entry so pi displays the installed package as `@kky42/pi-goal` instead of `@kky42/pi-goal:src`.
8
+
5
9
  ## 1.0.0 - 2026-05-30
6
10
 
7
11
  - Renames the public package to `@kky42/pi-goal` for npm and pi package installs.
package/index.ts ADDED
@@ -0,0 +1 @@
1
+ export { default, __testHooks } from "./src/index.js";
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@kky42/pi-goal",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Codex-style goal tracking and continuation for pi.",
5
5
  "type": "module",
6
6
  "author": "kky42",
7
7
  "license": "MIT",
8
- "main": "src/index.ts",
8
+ "main": "./index.ts",
9
+ "exports": "./index.ts",
9
10
  "files": [
11
+ "index.ts",
10
12
  "src",
11
13
  "README.md",
12
14
  "CHANGELOG.md",
@@ -30,7 +32,7 @@
30
32
  "homepage": "https://github.com/kky42/pi-goal#readme",
31
33
  "pi": {
32
34
  "extensions": [
33
- "./src/index.ts"
35
+ "./index.ts"
34
36
  ]
35
37
  },
36
38
  "scripts": {