chore: fix CI failing to release (#1232)

This commit is contained in:
Ralph Khreish
2025-09-22 22:34:12 +02:00
committed by GitHub
parent 05f6242f7e
commit f487736670
9 changed files with 349 additions and 104 deletions

View File

@@ -1,6 +1,5 @@
{
"name": "@tm/cli",
"version": "0.27.0",
"description": "Task Master CLI - Command line interface for task management",
"type": "module",
"private": true,
@@ -9,10 +8,7 @@
"exports": {
".": "./src/index.ts"
},
"files": [
"dist",
"README.md"
],
"files": ["dist", "README.md"],
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "biome check src",
@@ -27,12 +23,12 @@
},
"dependencies": {
"@tm/core": "*",
"boxen": "^7.1.1",
"boxen": "^8.0.1",
"chalk": "5.6.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"inquirer": "^9.2.10",
"ora": "^8.1.0"
"inquirer": "^12.5.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
@@ -45,19 +41,12 @@
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"task-master",
"cli",
"task-management",
"productivity"
],
"keywords": ["task-master", "cli", "task-management", "productivity"],
"author": "",
"license": "MIT",
"typesVersions": {
"*": {
"*": [
"src/*"
]
"*": ["src/*"]
}
}
}