hataraku
Version:
An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.
146 lines (145 loc) • 4.3 kB
JSON
{
"name": "hataraku",
"version": "0.7.0",
"description": "An autonomous coding agent for building AI-powered development tools. The name \"Hataraku\" (働く) means \"to work\" in Japanese.",
"author": {
"name": "Michael Darmousseh"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/turlockmike/hataraku"
},
"homepage": "https://github.com/turlockmike/hataraku",
"license": "MIT",
"keywords": [
"cli",
"hataraku",
"claude",
"dev",
"mcp",
"openrouter",
"coding",
"agent",
"autonomous",
"ai",
"sdk"
],
"main": "./dist/cjs/core/index.js",
"module": "./dist/esm/core/index.js",
"types": "./dist/types/core/index.d.ts",
"exports": {
".": {
"types": "./dist/types/core/index.d.ts",
"import": "./dist/esm/core/index.js",
"require": "./dist/cjs/core/index.js"
}
},
"bin": {
"hataraku": "./dist/cli.cjs"
},
"files": [
"dist",
"README.md",
"LICENSE",
"src/audio"
],
"scripts": {
"build:clean": "rm -rf dist",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:audio": "mkdir -p dist/audio && cp -r src/audio/* dist/audio/",
"build": "npm run build:clean && npm run build:cjs && npm run build:esm && npm run build:cli && npm run build:audio",
"build:cli": "node esbuild.js --cli --production",
"cli": "tsx src/cli.ts",
"cli:prod": "node dist/cli.cjs",
"dev": "OPENROUTER_API_KEY=$(grep OPENROUTER_API_KEY .env | cut -d '=' -f2) tsx src/cli.ts",
"example": "tsx examples/run.ts",
"typecheck": "npm run typecheck:esm && npm run typecheck:cjs && npm run typecheck:examples",
"changeset": "changeset",
"version-packages": "changeset version",
"typecheck:examples": "tsc -p examples/tsconfig.json --noEmit",
"typecheck:esm": "tsc -p tsconfig.esm.json --noEmit",
"typecheck:cjs": "tsc -p tsconfig.cjs.json --noEmit",
"clean": "rm -rf dist",
"lint": "eslint src --ext ts",
"prepare": "husky",
"release": "changeset publish",
"test": "jest",
"prepublishOnly": "npm run clean && npm run build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@ai-sdk/amazon-bedrock": "2.1.1",
"@ai-sdk/anthropic": "1.1.15",
"@ai-sdk/google-vertex": "2.1.24",
"@ai-sdk/openai": "1.2.2",
"@aws-sdk/credential-providers": "3.758.0",
"@changesets/cli": "^2.27.12",
"@changesets/types": "^6.0.0",
"@openrouter/ai-sdk-provider": "0.4.3",
"@types/diff": "^5.2.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.7",
"@types/node": "^20.17.13",
"@types/pdf-parse": "^1.1.4",
"@types/sound-play": "^1.1.3",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"esbuild": "^0.25.0",
"eslint": "^8.57.0",
"eslint-plugin-filenames": "^1.3.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"ts-jest": "^29.2.5",
"tsx": "^4.19.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@aws-sdk/client-bedrock-agent-runtime": "^3.758.0",
"@inquirer/prompts": "^3.3.0",
"@modelcontextprotocol/sdk": "1.7.0",
"ai": "4.1.54",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"diff": "^5.2.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"fast-glob": "^3.3.2",
"fastest-levenshtein": "~1.0.16",
"isbinaryfile": "^5.0.2",
"mammoth": "^1.8.0",
"os-name": "^6.0.0",
"pdf-parse": "^1.1.1",
"sound-play": "^1.1.0",
"tree-sitter-wasms": "^0.1.11",
"web-tree-sitter": "^0.22.6",
"zod": "3.24.2",
"zod-to-json-schema": "3.24.3"
},
"optionalDependencies": {
"@ai-sdk/amazon-bedrock": "2.0.5",
"@ai-sdk/anthropic": "1.1.13",
"@ai-sdk/google-vertex": "2.1.22",
"@ai-sdk/openai": "1.2.0",
"@aws-sdk/client-bedrock-agent-runtime": "^3.758.0",
"@aws-sdk/credential-providers": "3.758.0",
"@openrouter/ai-sdk-provider": "0.4.3"
},
"overrides": {
"minimist": "^1.2.8",
"minimatch": "^3.1.2"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npx eslint -c .eslintrc.json"
]
}
}