@pi-unipi/unipi 2.6.2 → 2.6.4

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": "@pi-unipi/unipi",
3
- "version": "2.6.2",
3
+ "version": "2.6.4",
4
4
  "description": "All-in-one extension suite for Pi coding agent",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -95,7 +95,7 @@
95
95
  "@pi-unipi/footer": "2.6.1",
96
96
  "@pi-unipi/updater": "2.6.1",
97
97
  "@pi-unipi/input-shortcuts": "2.6.1",
98
- "@pi-unipi/cocoindex": "2.6.1"
98
+ "@pi-unipi/image": "2.6.1"
99
99
  },
100
100
  "devDependencies": {
101
101
  "@earendil-works/pi-agent-core": "^0.80.0",
@@ -10,7 +10,7 @@
10
10
  */
11
11
  import type { Theme } from "@earendil-works/pi-coding-agent";
12
12
  import { truncateToWidth, visibleWidth } from "@earendil-works/pi-tui";
13
- import { safeRepeat } from "./tui-width.ts";
13
+ import { safeRepeat } from "./tui-width.js";
14
14
 
15
15
  /** ANSI codes used when no Theme is available (terminal default). */
16
16
  const FALLBACK_COLORS: Record<string, string> = {
@@ -1,20 +1,11 @@
1
1
  {
2
2
  "name": "@pi-unipi/subagents",
3
3
  "version": "2.6.1",
4
- "description": "Subagents for UniPi parallel execution, file locking, workflow integration",
4
+ "description": "Subagents for UniPi \u2014 parallel execution, file locking, workflow integration",
5
5
  "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "import": "./dist/index.js",
11
- "types": "./dist/index.d.ts"
12
- }
13
- },
6
+ "main": "src/index.ts",
7
+ "types": "src/index.ts",
14
8
  "scripts": {
15
- "build": "rm -rf dist && tsc -p tsconfig.build.json && node scripts/verify-build.mjs",
16
- "prepack": "npm run build",
17
- "dev": "tsc --watch",
18
9
  "test": "npx tsx --test src/__tests__/*.test.ts"
19
10
  },
20
11
  "dependencies": {
@@ -30,12 +21,13 @@
30
21
  "typebox": "^1.1.38"
31
22
  },
32
23
  "files": [
33
- "dist/**",
24
+ "src/**/*.ts",
25
+ "src/global.d.ts",
34
26
  "README.md"
35
27
  ],
36
28
  "pi": {
37
29
  "extensions": [
38
- "./dist/index.js"
30
+ "./src/index.ts"
39
31
  ],
40
32
  "skills": [],
41
33
  "prompts": [],
@@ -15,9 +15,9 @@ import workflow from "@pi-unipi/workflow";
15
15
  import ralph from "@pi-unipi/ralph";
16
16
  import memory from "@pi-unipi/memory";
17
17
  import infoScreen from "@pi-unipi/info-screen";
18
- import subagents from "../subagents/src/index.js";
18
+ import subagents from "@pi-unipi/subagents";
19
19
  import btw from "@pi-unipi/btw/extensions/btw.js";
20
- import webApi from "../web-api/src/index.js";
20
+ import webApi from "@pi-unipi/web-api";
21
21
  import utility from "@pi-unipi/utility";
22
22
  import askUser from "@pi-unipi/ask-user";
23
23
  import mcp from "@pi-unipi/mcp";
@@ -29,7 +29,7 @@ import compactor from "@pi-unipi/compactor";
29
29
  import footer from "@pi-unipi/footer";
30
30
  import updater from "@pi-unipi/updater";
31
31
  import inputShortcuts from "@pi-unipi/input-shortcuts";
32
- import image from "../image/src/index.js";
32
+ import image from "@pi-unipi/image";
33
33
 
34
34
  export default function (pi: ExtensionAPI) {
35
35
  workflow(pi);