@fromsvenwithlove/devops-issues-cli
Version:
AI-powered CLI tool and library for Azure DevOps work item management with Claude agents
60 lines (59 loc) • 1.46 kB
JSON
{
"name": "@fromsvenwithlove/devops-issues-cli",
"version": "1.2.0",
"description": "AI-powered CLI tool and library for Azure DevOps work item management with Claude agents",
"main": "./src/index.js",
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"require": "./src/index.js"
},
"./agents": "./agents/index.js",
"./templates": "./templates/index.js",
"./schemas": "./src/schemas/work-item-hierarchy.json"
},
"bin": {
"devops-issues": "./bin/devops-issues.js",
"devops-ai-init": "./bin/init-agents.js"
},
"files": [
"src/",
"bin/",
"agents/",
"templates/",
"schemas/",
"docs/"
],
"keywords": [
"azure-devops",
"cli",
"work-items",
"ai",
"claude-agents",
"automation",
"project-management",
"agile",
"user-stories"
],
"scripts": {
"start": "node bin/devops-issues.js",
"explore": "node bin/devops-issues.js explore",
"create": "node bin/devops-issues.js create",
"devops": "node bin/devops-issues.js",
"warm-cache": "node scripts/warm-cache.js",
"release": "npm publish --access public"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"azure-devops-node-api": "^15.1.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"dotenv": "^16.4.5",
"inquirer": "^12.7.0",
"keypress": "^0.2.1",
"ora": "^8.2.0"
}
}