chore: set goose binaries as executable in package.json (#8589)

This commit is contained in:
Jack Amadeo
2026-04-16 11:36:53 -04:00
committed by GitHub
parent fd93865951
commit 67b90205ed
15 changed files with 452 additions and 390 deletions
+17
View File
@@ -17,6 +17,16 @@
"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"
],
@@ -35,6 +45,13 @@
"peerDependencies": {
"@agentclientprotocol/sdk": "*"
},
"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.14.1",
"@hey-api/openapi-ts": "^0.92.3",