codesummary
Version:
Cross-platform CLI tool that generates professional PDF documentation and RAG-optimized JSON outputs from project source code. Perfect for code reviews, audits, documentation, and AI/ML applications with semantic chunking and precision offsets.
96 lines (95 loc) • 2.42 kB
JSON
{
"name": "codesummary",
"version": "1.1.1",
"description": "Cross-platform CLI tool that generates professional PDF documentation and RAG-optimized JSON outputs from project source code. Perfect for code reviews, audits, documentation, and AI/ML applications with semantic chunking and precision offsets.",
"main": "src/index.js",
"type": "module",
"bin": {
"codesummary": "./bin/codesummary.js"
},
"scripts": {
"start": "node bin/codesummary.js",
"dev": "node bin/codesummary.js",
"test": "node bin/codesummary.js --help",
"lint": "eslint src/ bin/",
"format": "prettier --write .",
"prepublishOnly": "npm run test"
},
"keywords": [
"code-documentation",
"pdf-generator",
"rag",
"vector-database",
"ai-ml",
"semantic-chunking",
"source-code",
"cli-tool",
"code-review",
"project-documentation",
"audit-tool",
"cross-platform",
"documentation-generator",
"pdf-export",
"json-export",
"code-analysis",
"file-scanner",
"project-summary",
"code-archive",
"developer-tools",
"nodejs-cli",
"automatic-documentation",
"professional-pdf",
"terminal-compatible",
"llm-integration",
"token-estimation",
"byte-offsets",
"precision-indexing"
],
"author": {
"name": "CodeSummary Contributors",
"url": "https://github.com/skamoll/CodeSummary/graphs/contributors"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/skamoll/CodeSummary.git"
},
"bugs": {
"url": "https://github.com/skamoll/CodeSummary/issues"
},
"homepage": "https://github.com/skamoll/CodeSummary#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"rag-schema.json",
"features.md"
],
"preferGlobal": true,
"dependencies": {
"pdfkit": "^0.15.0",
"inquirer": "^9.2.15",
"fs-extra": "^11.2.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"js-yaml": "^4.1.0",
"ajv": "^8.12.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/skamoll"
},
"publishConfig": {
"access": "public"
}
}