@victor-software-house/pi-acp 0.1.0 → 0.1.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/README.md +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -129,7 +129,7 @@ Zed shows an Authenticate banner that launches this automatically.
|
|
|
129
129
|
```bash
|
|
130
130
|
bun install
|
|
131
131
|
bun run dev # run from src
|
|
132
|
-
bun run build #
|
|
132
|
+
bun run build # tsdown -> dist/index.mjs
|
|
133
133
|
bun run typecheck # tsc --noEmit
|
|
134
134
|
bun run lint # biome + oxlint
|
|
135
135
|
bun test # 26 tests
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@victor-software-house/pi-acp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "ACP adapter for pi coding agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Victor Software House",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"node": ">=20"
|
|
27
27
|
},
|
|
28
28
|
"type": "module",
|
|
29
|
-
"main": "dist/index.
|
|
29
|
+
"main": "dist/index.mjs",
|
|
30
30
|
"bin": {
|
|
31
|
-
"pi-acp": "dist/index.
|
|
31
|
+
"pi-acp": "dist/index.mjs"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"dist"
|