mirror of
https://github.com/aaif-goose/goose.git
synced 2026-07-03 14:10:03 +02:00
69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "@aaif/goose-sdk",
|
|
"version": "0.20.2",
|
|
"description": "Agent Client Protocol (ACP) SDK for Goose AI agent",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/aaif-goose/goose.git"
|
|
},
|
|
"keywords": [
|
|
"goose",
|
|
"ai",
|
|
"agent",
|
|
"acp",
|
|
"agent-client-protocol"
|
|
],
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./node": {
|
|
"types": "./dist/resolve-binary.d.ts",
|
|
"default": "./dist/resolve-binary.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run generate && npm run build:ts",
|
|
"build:ts": "tsc",
|
|
"build:native": "tsx scripts/build-native.ts",
|
|
"build:native:all": "tsx scripts/build-native.ts --all",
|
|
"generate": "tsx generate-schema.ts",
|
|
"lint": "tsc --noEmit",
|
|
"test": "node --import tsx --test tests/*.test.ts",
|
|
"typecheck:test": "tsc -p tsconfig.test.json --noEmit",
|
|
"format": "prettier --write src/",
|
|
"check:compat": "node scripts/check-binary-compat.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/ext-apps": "^0.3.1",
|
|
"@modelcontextprotocol/sdk": "^1.27.0",
|
|
"zod": "^3.25.76"
|
|
},
|
|
"peerDependencies": {
|
|
"@agentclientprotocol/sdk": "^0.19.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@aaif/goose-binary-darwin-arm64": "workspace:*",
|
|
"@aaif/goose-binary-darwin-x64": "workspace:*",
|
|
"@aaif/goose-binary-linux-arm64": "workspace:*",
|
|
"@aaif/goose-binary-linux-x64": "workspace:*",
|
|
"@aaif/goose-binary-win32-x64": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@agentclientprotocol/sdk": "^0.19.0",
|
|
"@hey-api/openapi-ts": "^0.92.3",
|
|
"@types/node": "^20.0.0",
|
|
"prettier": "^3.8.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "~5.9.3"
|
|
}
|
|
}
|