{
  "name": "debt-collector",
  "version": "v1.0.0-alpha.9",
  "description": "a nodejs tool to identify, track and mesure technical debt",
  "bin": "./dist/cli.js",
  "type": "module",
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc",
    "predev": "npm link",
    "dev": "tsc --watch",
    "postdev": "npm unlink debt-collector",
    "lint": "eslint --ext .js,.jsx,.ts,.tsx ./commands ./components ./lib",
    "test": "vitest",
    "test:watch": "vitest watch --ui",
    "test:coverage": "vitest run --coverage"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gael-boyenval/debt-collector.git"
  },
  "keywords": [
    "technical",
    "debt"
  ],
  "author": "gael-boyenval",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/gael-boyenval/debt-collector/issues"
  },
  "homepage": "https://github.com/gael-boyenval/debt-collector#readme",
  "dependencies": {
    "cli-spinners": "^3.2.0",
    "escape-string-regexp-node": "^1.0.2",
    "glob": "^11.0.1",
    "ink": "^5.2.0",
    "ink-big-text": "^2.0.0",
    "ink-task-list": "^2.0.0",
    "minimatch": "^10.0.1",
    "pastel": "^3.0.0",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "simple-git": "^3.27.0",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@sindresorhus/tsconfig": "^7.0.0",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.2.0",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/glob": "^8.1.0",
    "@types/ink-table": "^1.0.7",
    "@types/minimatch": "^5.1.2",
    "@types/node": "^20.11.24",
    "@types/react": "^18.2.0",
    "@vdemedes/prettier-config": "^2.0.1",
    "@vercel/ncc": "^0.38.3",
    "@vitest/coverage-v8": "^1.3.1",
    "@vitest/ui": "^3.1.3",
    "ava": "^6.2.0",
    "chalk": "^5.4.1",
    "eslint": "^9.22.0",
    "eslint-config-xo-react": "^0.28.0",
    "eslint-plugin-react": "^7.37.4",
    "eslint-plugin-react-hooks": "^5.2.0",
    "ink-testing-library": "^4.0.0",
    "jsdom": "^26.0.0",
    "prettier": "^3.5.3",
    "react-devtools-core": "^6.1.1",
    "typescript": "^5.8.2",
    "vitest": "^1.3.1",
    "xo": "^0.60.0"
  },
  "ava": {
    "extensions": {
      "ts": "module",
      "tsx": "module"
    },
    "nodeArguments": [
      "--loader=ts-node/esm"
    ]
  },
  "xo": {
    "extends": "xo-react",
    "prettier": true,
    "rules": {
      "react/prop-types": "off"
    }
  }
}
