feat: publish standalone Pi connect extension

This commit is contained in:
Chengdong Zhang
2026-07-27 17:59:14 +08:00
parent 5e743418bd
commit 96ecccc287
9 changed files with 3360 additions and 16 deletions

View File

@@ -1,13 +1,12 @@
{
"name": "@pi-platform/connect-local",
"version": "0.1.18",
"name": "agentic-chat-connect",
"version": "0.1.0",
"private": true,
"type": "module",
"keywords": ["pi-package"],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"types": "./src/index.ts",
"pi": {
"extensions": ["./dist/index.js"]
"extensions": ["./src/index.ts"]
},
"scripts": {
"build": "tsc",
@@ -15,12 +14,14 @@
"test": "vitest run"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "^0.80.10",
"@pi-platform/shared": "*",
"ws": "^8.21.1"
"ws": "^8.21.1",
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.80.10",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"typescript": "^5.4.0",
"vitest": "^4.1.10"
}
}