veritas-kanban/cli/package.json
Brad Groux 931d437b67 chore: Release v1.6.0
## Highlights
- Activity Page Redesign — Full-width status history, clickable navigation, color-coded badges
- Task Templates UI (#39) — Full management interface for templates
- Analytics API (#43) — Timeline and aggregate metrics endpoints
- Status Transition Hooks — Quality gates for task status changes
- 7 GitHub Issues Closed (#47, #48, #49, #51, #53, #56, #82)

## Changes
- Bump all packages to 1.6.0
- Update CHANGELOG.md with comprehensive release notes
- Update README.md version badge and roadmap
- Update FEATURES.md with new sections:
  - Task Templates (v1.6.0)
  - Analytics API (v1.6.0)
  - Dashboard Filter Bar (v1.6.0)
  - Redesigned Activity Feed section
- Activity page: purple for sub-agent, amber for in-progress, blue for done
- Status badges: uniform width, color-coded by status type
2026-02-04 22:11:13 -06:00

30 lines
683 B
JSON

{
"name": "@veritas-kanban/cli",
"version": "1.6.0",
"description": "CLI for Veritas Kanban task management",
"type": "module",
"bin": {
"vk": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@veritas-kanban/shared": "workspace:*",
"commander": "^12.1.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"tsx": "^4.19.0"
},
"license": "MIT",
"author": "Brad Groux <brad@digitalmeld.io>",
"repository": {
"type": "git",
"url": "https://github.com/BradGroux/veritas-kanban.git"
}
}