@narumitw/pi-webui 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 +2 -1
- package/package.json +2 -2
- package/src/index.ts +1 -0
package/README.md
CHANGED
|
@@ -156,7 +156,8 @@ The page uses semantic headings, native disclosure/dialog controls, concise stat
|
|
|
156
156
|
## 🗂️ Package layout
|
|
157
157
|
|
|
158
158
|
```text
|
|
159
|
-
src/
|
|
159
|
+
src/index.ts Pi package entrypoint
|
|
160
|
+
src/webui.ts extension registration and command orchestration
|
|
160
161
|
src/runtime.ts Pi lifecycle, commands, event projection, and browser message routing
|
|
161
162
|
src/settings.ts global WebUI settings validation and atomic persistence
|
|
162
163
|
src/conversation.ts bounded transcript snapshot and ordered event replay
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@narumitw/pi-webui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "Lightweight local web companion for the current Pi terminal session.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"pi": {
|
|
22
22
|
"extensions": [
|
|
23
|
-
"./src/
|
|
23
|
+
"./src/index.ts"
|
|
24
24
|
]
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./webui.js";
|