Files
llmwiki-cli/package.json
doum1004 428e3e516e Refactor wiki structure and improve command functionality
- Renamed sections in the wiki index from Entities/Sources/Concepts to a more structured format.
- Removed the log.md file and its associated tests to streamline the logging process.
- Updated the ai-agent-patterns.md to include JSON write examples and demo conventions.
- Modified commands tests to handle JSON input for writing and reading pages.
- Implemented delete functionality for pages and ensured proper index updates.
- Enhanced index management to support upserting entries and handling duplicates.
- Removed deprecated profile tests and log manager tests to clean up the codebase.
- Adjusted storage tests to reflect changes in file writing locations.
2026-04-30 23:31:06 -04:00

34 lines
777 B
JSON

{
"name": "llmwiki-cli",
"version": "1.0.0",
"description": "CLI tool for LLM agents to build and maintain personal knowledge bases",
"repository": {
"type": "git",
"url": "https://github.com/doum1004/llmwiki-cli"
},
"license": "MIT",
"type": "module",
"bin": {
"wiki": "dist/index.js",
"llmwiki": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outfile dist/index.js --target node",
"dev": "bun run src/index.ts",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
"commander": "^12.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9"
}
}