Files
llmwiki-cli/package.json
doum1004 cf0bf05163 Refactor storage backend: Remove Supabase support and related code
- Removed Supabase-related SQL schema and configuration options from the init command.
- Updated profile command to reflect changes in storage profile handling.
- Refactored search command to use new profile management.
- Removed SupabaseProvider and related JWT parsing functionality.
- Updated registry management to eliminate legacy Supabase profiles.
- Introduced new profile validation and resolution logic.
- Updated tests to remove Supabase-related cases and added tests for new profile functionality.
2026-04-15 15:01:31 -04:00

34 lines
772 B
JSON

{
"name": "llmwiki-cli",
"version": "0.2.2",
"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/wiki.js",
"llmwiki": "dist/wiki.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build bin/wiki.ts --outfile dist/wiki.js --target node",
"dev": "bun run bin/wiki.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"
}
}