@agimon-ai/doompi-ui 0.0.1-alpha.45 → 0.0.1-alpha.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agimon-ai/doompi-ui",
3
- "version": "0.0.1-alpha.45",
3
+ "version": "0.0.1-alpha.48",
4
4
  "description": "Leader-key menus, themes, and TUI components for DoomPi and Pi extensions.",
5
5
  "keywords": [
6
6
  "ai",
@@ -27,7 +27,8 @@
27
27
  },
28
28
  "files": [
29
29
  "dist",
30
- "web",
30
+ "src/web",
31
+ "src/exports/webClient.ts",
31
32
  "themes"
32
33
  ],
33
34
  "type": "module",
@@ -169,11 +170,11 @@
169
170
  "dependencies": {
170
171
  "@deepseek-ai/cordis": "4.0.1",
171
172
  "yaml": "2.9.0",
172
- "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.44",
173
- "@agimon-ai/doompi-hashline": "0.0.1-alpha.16",
174
- "@agimon-ai/doompi-telemetry": "0.0.1-alpha.44",
175
- "@agimon-ai/doompi-web-components": "0.0.1-alpha.5",
176
- "@agimon-ai/doompi-web-contracts": "0.0.1-alpha.8"
173
+ "@agimon-ai/doompi-hashline": "0.0.1-alpha.19",
174
+ "@agimon-ai/doompi-telemetry": "0.0.1-alpha.47",
175
+ "@agimon-ai/doompi-web-components": "0.0.1-alpha.8",
176
+ "@agimon-ai/doompi-web-contracts": "0.0.1-alpha.11",
177
+ "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.47"
177
178
  },
178
179
  "devDependencies": {
179
180
  "@earendil-works/pi-coding-agent": "0.84.4",
@@ -198,7 +199,7 @@
198
199
  "doompiWeb": {
199
200
  "pluginId": "builtin-tools",
200
201
  "channels": [],
201
- "client": "./web/index.ts"
202
+ "client": "./src/exports/webClient.ts"
202
203
  },
203
204
  "pi": {
204
205
  "extensions": [
@@ -208,7 +209,7 @@
208
209
  "scripts": {
209
210
  "build": "tsdown",
210
211
  "test": "vitest --run",
211
- "typecheck": "tsc --noEmit && tsc --noEmit -p web/tsconfig.json",
212
+ "typecheck": "tsc --noEmit && tsc --noEmit -p src/web/tsconfig.json",
212
213
  "lint": "oxlint . && oxfmt . --check",
213
214
  "fixcode": "oxlint . --fix && oxfmt ."
214
215
  }
@@ -0,0 +1 @@
1
+ export { webPlugin } from '../web/index.ts';
@@ -19,5 +19,5 @@
19
19
  "forceConsistentCasingInFileNames": true,
20
20
  "types": ["node"]
21
21
  },
22
- "include": [".", "../src/types"]
22
+ "include": [".", "../types", "../exports/webClient.ts"]
23
23
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes