68 lines
1.5 KiB
JSON
68 lines
1.5 KiB
JSON
{
|
|
"name": "takt",
|
|
"version": "0.1.1",
|
|
"description": "TAKT: Task Agent Koordination Tool - AI Agent Workflow Orchestration",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"takt": "./bin/takt",
|
|
"takt-cli": "./dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint src/",
|
|
"prepublishOnly": "npm run lint && npm run build && npm run test"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"claude-code",
|
|
"codex",
|
|
"ai",
|
|
"agent",
|
|
"orchestration",
|
|
"workflow",
|
|
"automation",
|
|
"llm",
|
|
"anthropic"
|
|
],
|
|
"author": "nrslib <38722970+nrslib@users.noreply.github.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nrslib/takt.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nrslib/takt/issues"
|
|
},
|
|
"homepage": "https://github.com/nrslib/takt#readme",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"bin/",
|
|
"resources/"
|
|
],
|
|
"dependencies": {
|
|
"@anthropic-ai/claude-agent-sdk": "^0.2.19",
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"yaml": "^2.4.5",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/node": "^20.14.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"eslint": "^9.0.0",
|
|
"typescript": "^5.5.0",
|
|
"typescript-eslint": "^8.53.1",
|
|
"vitest": "^2.0.0"
|
|
}
|
|
}
|