mycoder-agent
Version:
Agent module for mycoder - an AI-powered software development assistant
68 lines • 1.61 kB
JSON
{
"name": "mycoder-agent",
"version": "1.7.0",
"description": "Agent module for mycoder - an AI-powered software development assistant",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drivecore/mycoder.git"
},
"homepage": "https://mycoder.ai",
"bugs": {
"url": "https://github.com/drivecore/mycoder/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"agent",
"mycoder",
"swe",
"swe-agent",
"claude",
"auto-coder",
"typescript"
],
"author": "Ben Houston",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.37",
"@modelcontextprotocol/sdk": "^1.7.0",
"@mozilla/readability": "^0.5.0",
"@playwright/test": "^1.50.1",
"@vitest/browser": "^3.0.5",
"chalk": "^5.4.1",
"dotenv": "^16",
"jsdom": "^26.0.0",
"ollama": "^0.5.14",
"openai": "^4.87.3",
"playwright": "^1.50.1",
"uuid": "^11",
"zod": "^3.24.2",
"zod-to-json-schema": "^3"
},
"devDependencies": {
"@types/node": "^18",
"@types/uuid": "^10",
"@vitest/coverage-v8": "^3",
"rimraf": "^5",
"type-fest": "^4",
"typescript": "^5",
"vitest": "^3"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"semantic-release": "pnpm exec semantic-release -e semantic-release-monorepo"
}
}