{
  "name": "@lwelliott/cortex-cli",
  "version": "1.0.9",
  "description": "A TypeScript CLI for managing software project artifacts backed by SQLite",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lwelliot/cortex-cli.git"
  },
  "bugs": {
    "url": "https://github.com/lwelliot/cortex-cli/issues"
  },
  "homepage": "https://github.com/lwelliot/cortex-cli#readme",
  "publishConfig": {
    "access": "public"
  },
  "main": "dist/cli/index.js",
  "bin": {
    "cortex-cli": "dist/cli/index.js"
  },
  "scripts": {
    "generate:schema": "node scripts/generate-schema-types.js",
    "build": "npm run generate:schema && tsc",
    "build:release": "npm run build && node scripts/bundle-release.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "tsc --noEmit"
  },
  "files": [
    "dist/**/*",
    "!dist/cortex-cli.js",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "cli",
    "project-management",
    "sprint",
    "kanban",
    "sqlite",
    "typescript"
  ],
  "author": "lwelliot",
  "dependencies": {
    "better-sqlite3": "^11.7.0",
    "chalk": "^4.1.2",
    "cli-table3": "^0.6.5",
    "commander": "^13.1.0",
    "yaml": "^2.6.1"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.12",
    "@types/node": "^22.10.0",
    "@vitest/coverage-v8": "^2.1.8",
    "esbuild": "^0.28.0",
    "typescript": "^5.9.3",
    "vitest": "^2.1.8"
  }
}
