mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
Cleanup Changes: - Remove 9 duplicate server lib files now available in shared packages: - automaker-paths.ts → @automaker/platform - conversation-utils.ts → @automaker/utils - error-handler.ts → @automaker/utils - fs-utils.ts → @automaker/utils - image-handler.ts → @automaker/utils - logger.ts → @automaker/utils - prompt-builder.ts → @automaker/utils - security.ts → @automaker/platform - subprocess-manager.ts → @automaker/platform ESM Conversion: - Convert @automaker/dependency-resolver from CommonJS to ESM - Fixes UI build compatibility with Vite bundler - Update package.json: add "type": "module", change "require" to "import" - Update tsconfig.json: module "ESNext", moduleResolution "bundler" Import Fixes: - Update write.ts to import mkdirSafe from @automaker/utils - Remove broken @automaker/types import from UI (not exported for Vite) Build Status: ✅ Server builds successfully ✅ UI builds successfully ✅ All migrated package tests pass (dependency-resolver, utils, platform) ✅ 500/554 server tests pass (54 pre-existing subprocess-manager failures) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
29 lines
635 B
JSON
29 lines
635 B
JSON
{
|
|
"name": "@automaker/dependency-resolver",
|
|
"version": "1.0.0",
|
|
"description": "Feature dependency resolution for AutoMaker",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"keywords": ["automaker", "dependency", "resolver"],
|
|
"author": "",
|
|
"dependencies": {
|
|
"@automaker/types": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|