done-list-generator
Version:
AI-powered CLI that turns your daily Git commits into a neat Markdown 'Done List' using LLMs.
56 lines (55 loc) • 1.41 kB
JSON
{
"name": "done-list-generator",
"version": "0.1.5",
"packageManager": "pnpm@10.18.2",
"private": false,
"description": "AI-powered CLI that turns your daily Git commits into a neat Markdown 'Done List' using LLMs.",
"type": "module",
"bin": {
"donelist": "dist/bin.js"
},
"files": [
"dist/",
"scripts/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "node -e \"fs=require('fs');try{fs.rmSync('dist',{recursive:true,force:true})}catch(e){}\"",
"postinstall": "node ./scripts/postinstall.mjs",
"start": "node ./dist/cli.js",
"dev": "node --enable-source-maps ./dist/cli.js --dry-run"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cli",
"git",
"commit-summary",
"markdown",
"ai",
"openrouter",
"daily-report",
"developer-productivity",
"llm"
],
"author": "jimyungkoh <aqaqeqeq0511@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/jimyungkoh/done-list-generator",
"repository": {
"type": "git",
"url": "git+https://github.com/jimyungkoh/done-list-generator.git"
},
"bugs": {
"url": "https://github.com/jimyungkoh/done-list-generator/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jimyungkoh"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.12.12",
"typescript": "^5.6.3"
}
}