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
+2 -13
View File
@@ -19,15 +19,11 @@
"goose": "dist/tui.js"
},
"files": [
"dist",
"scripts/postinstall.mjs",
"server-binary.json"
"dist"
],
"scripts": {
"build": "tsc",
"dev:binary": "node scripts/dev-binary.mjs",
"start": "npm run dev:binary && tsx src/tui.tsx",
"postinstall": "node scripts/postinstall.mjs",
"start": "node scripts/dev-start.mjs",
"lint": "tsc --noEmit"
},
"dependencies": {
@@ -41,13 +37,6 @@
"meow": "^13.2.0",
"react": "^19.2.4"
},
"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:*"
},
"overrides": {
"react": "^19.2.4"
},