llms-txt-generator
Version:
A powerful CLI tool and MCP server for generating standardized llms.txt and llms-full.txt documentation files to help AI models better understand project structures
76 lines • 2.04 kB
JSON
{
"name": "llms-txt-generator",
"version": "0.0.3",
"description": "A powerful CLI tool and MCP server for generating standardized llms.txt and llms-full.txt documentation files to help AI models better understand project structures",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"llms-txt-generator": "dist/cli/index.js",
"llms-txt-generator-mcp": "dist/mcp/server.js"
},
"keywords": [
"llms",
"llms-txt",
"ai",
"documentation",
"generator",
"cli",
"mcp",
"model-context-protocol",
"typescript",
"project-structure",
"ai-assistant",
"code-documentation"
],
"author": "",
"homepage": "https://github.com/grasplabs/llms-txt-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/grasplabs/llms-txt-generator.git"
},
"bugs": {
"url": "https://github.com/grasplabs/llms-txt-generator/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"jest": "^30.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"dotenv": "^16.5.0",
"js-yaml": "^4.1.0",
"openai": "^5.3.0",
"zod": "^3.25.63"
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"scripts": {
"build": "tsc && mkdir -p dist/llm/prompts && cp src/llm/prompts/*.md dist/llm/prompts/",
"clean": "rm -rf dist",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
}
}