Files
claude-task-master/package.json
Eyal Toledano 92600eec04 upversion
2025-03-22 01:51:56 -04:00

62 lines
1.4 KiB
JSON

{
"name": "claude-task-master",
"version": "1.6.1",
"description": "A task management system for AI-driven development with Claude",
"main": "index.js",
"type": "module",
"bin": {
"claude-task-init": "scripts/init.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare-package": "node scripts/prepare-package.js",
"prepublishOnly": "npm run prepare-package"
},
"keywords": [
"claude",
"task",
"management",
"ai",
"development",
"cursor",
"anthropic",
"llm"
],
"author": "Eyal Toledano",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"boxen": "^8.0.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"openai": "^4.86.1",
"ora": "^8.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eyaltoledano/claude-task-master.git"
},
"homepage": "https://github.com/eyaltoledano/claude-task-master#readme",
"bugs": {
"url": "https://github.com/eyaltoledano/claude-task-master/issues"
},
"files": [
"scripts/init.js",
"scripts/dev.js",
"assets/**",
".cursor/**",
"README-task-master.md",
"index.js"
],
"overrides": {
"node-fetch": "^3.3.2",
"whatwg-url": "^11.0.0"
}
}