mirror of
https://github.com/doum1004/llmwiki-cli.git
synced 2026-05-17 16:42:11 +02:00
- 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.
34 lines
777 B
JSON
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"
|
|
}
|
|
}
|