azdevops-cli
Version:
Azure DevOps CLI tool for sprint management and work item tracking
53 lines • 1.26 kB
JSON
{
"name": "azdevops-cli",
"version": "1.0.1",
"description": "Azure DevOps CLI tool for sprint management and work item tracking",
"main": "dist/index.js",
"bin": {
"azdevops": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "node esbuild.config.js",
"build:dev": "node esbuild.config.js --dev",
"build:watch": "node esbuild.config.js --dev --watch",
"start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"keywords": [
"azure",
"devops",
"cli",
"sprint",
"work-items",
"azure-devops",
"sprint-management"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.0",
"inquirer": "^9.2.0",
"ora": "^7.0.0",
"typescript": "^5.3.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^24.1.0",
"esbuild": "^0.25.8",
"ts-node": "^10.9.2"
}
}