feat: add @vibework/agent-sdk foundation
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s

This commit is contained in:
OG T
2026-06-08 13:43:54 +08:00
parent b7876d88e5
commit 0d4d694201
9 changed files with 201 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
{
"name": "@vibework/agent-sdk",
"version": "1.0.0",
"description": "The official AI Agent-to-Agent SDK for VibeWork.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@types/node": "^20.19.42",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.17.0"
}
}