8a21a212f8
Deploy Documentation / deploy (push) Has been cancelled
Canary / build-cli (push) Has been skipped
Canary / Upload Install Script (push) Has been skipped
Canary / bundle-desktop (push) Has been skipped
Canary / bundle-desktop-intel (push) Has been skipped
Canary / bundle-desktop-linux (push) Has been skipped
Canary / bundle-desktop-windows (push) Has been skipped
Canary / bundle-desktop-windows-cuda (push) Has been skipped
Canary / Release (push) Has been skipped
Cargo Deny / deny (push) Has been skipped
Unused Dependencies / machete (push) Has been skipped
Canary / Prepare Version (push) Failing after 1s
Live Provider Tests / check-fork (push) Failing after 0s
Create Minor Release PR / check-version-bump-pr (push) Has been skipped
Publish Ask AI Bot Docker Image / docker (push) Failing after 1s
Live Provider Tests / changes (push) Has been skipped
Scorecard supply-chain security / Scorecard analysis (push) Has been skipped
Publish Docker Image / docker (push) Failing after 1s
CI / changes (push) Failing after 8s
Create Minor Release PR / release (push) Has been skipped
Live Provider Tests / Smoke Tests (push) Has been cancelled
Live Provider Tests / Smoke Tests (Code Execution) (push) Has been cancelled
Live Provider Tests / Compaction Tests (push) Has been cancelled
CI / Build Rust Project on Windows (push) Has been cancelled
Live Provider Tests / Build Binary (push) Has been cancelled
CI / Lint Rust Code (push) Has been cancelled
CI / Check Generated Schemas are Up-to-Date (push) Has been cancelled
CI / Test and Lint Electron Desktop App (push) Has been cancelled
CI / Check Rust Code Format (push) Has been cancelled
CI / Build and Test Rust Project (push) Has been cancelled
CI / Check MSRV (push) Has been cancelled
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"
|
|
}
|
|
}
|