ctx-gen
Version:
AI-Enhanced Documentation Generator for Code Understanding
82 lines (81 loc) • 1.98 kB
JSON
{
"name": "ctx-gen",
"version": "1.1.6",
"description": "AI-Enhanced Documentation Generator for Code Understanding",
"type": "module",
"main": "dist/index.js",
"bin": {
"ctx-gen": "dist/cli/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --skipLibCheck --noImplicitAny",
"start": "node dist/cli/index.js",
"dev": "ts-node --esm src/cli/index.ts",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext .ts",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"keywords": [
"documentation",
"code-analysis",
"AI",
"LLM",
"developer-tools",
"static-analysis",
"documentation-generator",
"diagrams",
"openai",
"code-understanding"
],
"author": "Max McNeal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maxmcneal/ctx-gen.git"
},
"bugs": {
"url": "https://github.com/maxmcneal/ctx-gen/issues"
},
"homepage": "https://github.com/maxmcneal/ctx-gen#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"openai": "^4.95.1",
"path-type": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/cli-progress": "^3.11.5",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"eslint": "^9.25.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,js,json,md}": "prettier --write"
}
}