mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-16 21:53:07 +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>
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@automaker/server",
|
|
"version": "0.15.0",
|
|
"description": "Backend server for Automaker - provides API for both web and Electron modes",
|
|
"author": "AutoMaker Team",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=22.0.0 <23.0.0"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"dev:test": "tsx src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src/",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:run": "vitest run",
|
|
"test:cov": "vitest run --coverage",
|
|
"test:watch": "vitest watch",
|
|
"test:unit": "vitest run tests/unit"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "0.2.32",
|
|
"@automaker/dependency-resolver": "1.0.0",
|
|
"@automaker/git-utils": "1.0.0",
|
|
"@automaker/model-resolver": "1.0.0",
|
|
"@automaker/platform": "1.0.0",
|
|
"@automaker/prompts": "1.0.0",
|
|
"@automaker/types": "1.0.0",
|
|
"@automaker/utils": "1.0.0",
|
|
"@github/copilot-sdk": "^0.1.16",
|
|
"@modelcontextprotocol/sdk": "1.25.2",
|
|
"@openai/codex-sdk": "^0.98.0",
|
|
"cookie-parser": "1.4.7",
|
|
"cors": "2.8.5",
|
|
"dotenv": "17.2.3",
|
|
"express": "5.2.1",
|
|
"morgan": "1.10.1",
|
|
"node-pty": "1.1.0-beta41",
|
|
"ws": "8.18.3",
|
|
"yaml": "2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.57.0",
|
|
"@types/cookie": "0.6.0",
|
|
"@types/cookie-parser": "1.4.10",
|
|
"@types/cors": "2.8.19",
|
|
"@types/express": "5.0.6",
|
|
"@types/morgan": "1.9.10",
|
|
"@types/node": "22.19.3",
|
|
"@types/ws": "8.18.1",
|
|
"@vitest/coverage-v8": "4.0.16",
|
|
"@vitest/ui": "4.0.16",
|
|
"tsx": "4.21.0",
|
|
"typescript": "5.9.3",
|
|
"vitest": "4.0.16"
|
|
}
|
|
}
|