mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-17 10:03:08 +00:00
* Changes from feature/worktree-view-customization * Feature: Git sync, set-tracking, and push divergence handling (#796) * Add quick-add feature with improved workflows (#802) * Changes from feature/quick-add * feat: Clarify system prompt and improve error handling across services. Address PR Feedback * feat: Improve PR description parsing and refactor event handling * feat: Add context options to pipeline orchestrator initialization * fix: Deduplicate React and handle CJS interop for use-sync-external-store Resolve "Cannot read properties of null (reading 'useState')" errors by deduplicating React/react-dom and ensuring use-sync-external-store is bundled together with React to prevent CJS packages from resolving to different React instances. * Changes from feature/worktree-view-customization * refactor: Remove unused worktree swap and highlight props * refactor: Consolidate feature completion logic and improve thinking level defaults * feat: Increase max turn limit to 10000 - Update DEFAULT_MAX_TURNS from 1000 to 10000 in settings-helpers.ts and agent-executor.ts - Update MAX_ALLOWED_TURNS from 2000 to 10000 in settings-helpers.ts - Update UI clamping logic from 2000 to 10000 in app-store.ts - Update fallback values from 1000 to 10000 in use-settings-sync.ts - Update default value from 1000 to 10000 in DEFAULT_GLOBAL_SETTINGS - Update documentation to reflect new range: 1-10000 Allows agents to perform up to 10000 turns for complex feature execution. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com> * feat: Add model resolution, improve session handling, and enhance UI stability * refactor: Remove unused sync and tracking branch props from worktree components * feat: Add PR number update functionality to worktrees. Address pr feedback * feat: Optimize Gemini CLI startup and add tool result tracking * refactor: Improve error handling and simplify worktree task cleanup --------- Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com>
83 lines
4.3 KiB
JSON
83 lines
4.3 KiB
JSON
{
|
|
"name": "automaker",
|
|
"version": "0.15.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=22.0.0 <23.0.0"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"libs/*"
|
|
],
|
|
"scripts": {
|
|
"postinstall": "node -e \"const fs=require('fs');if(process.platform==='darwin'){['darwin-arm64','darwin-x64'].forEach(a=>{const p='node_modules/node-pty/prebuilds/'+a+'/spawn-helper';if(fs.existsSync(p))fs.chmodSync(p,0o755)})}\" && node scripts/fix-lockfile-urls.mjs",
|
|
"fix:lockfile": "node scripts/fix-lockfile-urls.mjs",
|
|
"dev": "node start-automaker.mjs",
|
|
"start": "node start-automaker.mjs --production",
|
|
"_dev:web": "npm run dev:web --workspace=apps/ui",
|
|
"_dev:electron": "npm run dev:electron --workspace=apps/ui",
|
|
"_dev:electron:debug": "npm run dev:electron:debug --workspace=apps/ui",
|
|
"_dev:electron:wsl": "npm run dev:electron:wsl --workspace=apps/ui",
|
|
"_dev:electron:wsl:gpu": "npm run dev:electron:wsl:gpu --workspace=apps/ui",
|
|
"_dev:server": "npm run dev --workspace=apps/server",
|
|
"dev:web": "npm run build:packages && npm run _dev:web",
|
|
"dev:electron": "npm run build:packages && npm run _dev:electron",
|
|
"dev:electron:debug": "npm run build:packages && npm run _dev:electron:debug",
|
|
"dev:electron:wsl": "npm run build:packages && npm run _dev:electron:wsl",
|
|
"dev:electron:wsl:gpu": "npm run build:packages && npm run _dev:electron:wsl:gpu",
|
|
"dev:server": "npm run build:packages && npm run _dev:server",
|
|
"dev:docker": "docker compose up",
|
|
"dev:docker:rebuild": "docker compose build --no-cache && docker compose up",
|
|
"dev:full": "npm run build:packages && concurrently \"npm run _dev:server\" \"npm run _dev:web\"",
|
|
"build": "npm run build:packages && npm run build --workspace=apps/ui",
|
|
"build:packages": "npm run build -w @automaker/types && npm run build -w @automaker/platform && npm run build -w @automaker/utils -w @automaker/spec-parser && npm run build -w @automaker/prompts -w @automaker/model-resolver -w @automaker/dependency-resolver && npm run build -w @automaker/git-utils",
|
|
"build:server": "npm run build:packages && npm run build --workspace=apps/server",
|
|
"build:electron": "npm run build:packages && npm run build:electron --workspace=apps/ui",
|
|
"build:electron:dir": "npm run build:packages && npm run build:electron:dir --workspace=apps/ui",
|
|
"build:electron:win": "npm run build:packages && npm run build:electron:win --workspace=apps/ui",
|
|
"build:electron:win:dir": "npm run build:packages && npm run build:electron:win:dir --workspace=apps/ui",
|
|
"build:electron:mac": "npm run build:packages && npm run build:electron:mac --workspace=apps/ui",
|
|
"build:electron:mac:dir": "npm run build:packages && npm run build:electron:mac:dir --workspace=apps/ui",
|
|
"build:electron:linux": "npm run build:packages && npm run build:electron:linux --workspace=apps/ui",
|
|
"build:electron:linux:dir": "npm run build:packages && npm run build:electron:linux:dir --workspace=apps/ui",
|
|
"lint": "npm run lint --workspace=apps/ui",
|
|
"lint:errors": "npm run lint --workspace=apps/ui -- --quiet",
|
|
"lint:server:errors": "npm run lint --workspace=apps/server -- --quiet",
|
|
"typecheck": "npm run typecheck --workspace=apps/ui",
|
|
"test": "npm run test --workspace=apps/ui",
|
|
"test:headed": "npm run test:headed --workspace=apps/ui",
|
|
"test:ui": "npm run test --workspace=apps/ui -- --ui",
|
|
"test:packages": "vitest run --project='!server'",
|
|
"test:server": "vitest run --project=server",
|
|
"test:server:coverage": "vitest run --project=server --coverage",
|
|
"test:unit": "vitest run",
|
|
"test:unit:watch": "vitest",
|
|
"test:all": "vitest run",
|
|
"lint:lockfile": "node scripts/lint-lockfile.mjs",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"rebuild": "rm -rf node_modules apps/*/node_modules libs/*/node_modules && npm install",
|
|
"prepare": "husky && npm run build:packages"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,css,md,html,yml,yaml}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"cross-spawn": "7.0.6",
|
|
"rehype-sanitize": "6.0.0",
|
|
"tree-kill": "1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "9.1.7",
|
|
"lint-staged": "^16.2.7",
|
|
"prettier": "3.7.4",
|
|
"vitest": "4.0.16"
|
|
},
|
|
"optionalDependencies": {
|
|
"dmg-license": "^1.0.11"
|
|
}
|
|
}
|