UNPKG

find-old-todos

Version:

CLI tool for JavaScript and TypeScript projects that searches for TODO comments older than a specified number of days.

74 lines 2.1 kB
{ "name": "find-old-todos", "version": "0.0.6", "description": "CLI tool for JavaScript and TypeScript projects that searches for TODO comments older than a specified number of days.", "keywords": [ "todo", "todos", "cli", "code-analysis", "comments", "developer-tools" ], "homepage": "https://github.com/onderonur/find-old-todos", "bugs": { "url": "https://github.com/onderonur/find-old-todos/issues" }, "repository": { "type": "git", "url": "git+https://github.com/onderonur/find-old-todos.git" }, "license": "MIT", "author": "onderonur", "type": "module", "bin": { "find-old-todos": "dist/cli.js" }, "files": [ "dist" ], "dependencies": { "@typescript-eslint/typescript-estree": "^8.49.0", "arg": "^5.0.2", "dayjs": "^1.11.19", "ora": "^9.0.0", "picocolors": "^1.1.1" }, "devDependencies": { "@eslint/js": "^9.39.2", "@types/node": "^25.0.1", "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", "eslint-plugin-only-warn": "^1.1.0", "eslint-plugin-unicorn": "^62.0.0", "globals": "^16.5.0", "husky": "^9.1.7", "knip": "^5.73.4", "lint-staged": "^16.2.7", "npm-check-updates": "^19.2.0", "prettier": "^3.7.4", "prettier-plugin-organize-imports": "^4.3.0", "prettier-plugin-packagejson": "^2.5.20", "publint": "^0.3.16", "tsup": "^8.5.1", "tsx": "^4.21.0", "typescript": "^5.9.3", "typescript-eslint": "^8.49.0" }, "scripts": { "build": "tsup", "codequality": "pnpm format && pnpm lint && pnpm typecheck", "codequality:fix": "pnpm format:fix && pnpm lint:fix && pnpm typecheck", "dev": "tsx watch src/cli.ts", "format": "prettier --check --ignore-unknown .", "format:fix": "prettier --write --ignore-unknown .", "lint": "eslint . --max-warnings 0", "lint:fix": "eslint . --max-warnings 0 --fix", "publint": "publint", "start": "node dist/cli.js", "typecheck": "tsc", "unused": "knip", "updates": "npm-check-updates -i" } }