@narumitw/pi-image-drop 0.25.0 → 0.28.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/README.md CHANGED
@@ -139,7 +139,8 @@ Then open the unchanged `http://127.0.0.1:45678/...` link locally. Image Drop do
139
139
  ## 🗂️ Package layout
140
140
 
141
141
  ```text
142
- src/image-drop.ts Pi extension entrypoint
142
+ src/index.ts Pi package entrypoint
143
+ src/image-drop.ts extension registration and command orchestration
143
144
  src/runtime.ts Pi lifecycle and message orchestration
144
145
  src/batch.ts in-memory draft and sent-history state machine
145
146
  src/images.ts bounded image processing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narumitw/pi-image-drop",
3
- "version": "0.25.0",
3
+ "version": "0.28.0",
4
4
  "description": "Pi extension for staging browser images and attaching them to the next message.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "pi": {
22
22
  "extensions": [
23
- "./src/image-drop.ts"
23
+ "./src/index.ts"
24
24
  ]
25
25
  },
26
26
  "scripts": {
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export { default } from "./image-drop.js";