Files
llmwiki-cli/package.json
github-actions[bot] 5fad286ec1 chore: release v1.0.1
2026-05-01 03:32:53 +00:00

34 lines
777 B
JSON

{
"name": "llmwiki-cli",
"version": "1.0.1",
"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"
}
}