Merge branch 'main' into feature/add-download-and-pr-commands

This commit is contained in:
Noah Brier
2025-09-17 15:52:28 -04:00
34 changed files with 7006 additions and 747 deletions
+22 -3
View File
@@ -1,11 +1,15 @@
{
"name": "claudesidian",
"version": "0.9.2",
"version": "0.11.0",
"description": "Claude Code + Obsidian Starter Kit - AI-powered second brain",
"type": "module",
"scripts": {
"setup": "pnpm install && echo '✅ Setup complete! Configure GEMINI_API_KEY for vision features'",
"test-gemini": "GEMINI_API_KEY=${GEMINI_API_KEY} node .claude/mcp-servers/gemini-vision.mjs",
"lint": "eslint --config .config/eslint.config.js . --fix && prettier --config .config/.prettierrc.js --write .",
"lint:check": "eslint --config .config/eslint.config.js . && prettier --config .config/.prettierrc.js --check .",
"format": "prettier --config .config/.prettierrc.js --write .",
"format:check": "prettier --config .config/.prettierrc.js --check .",
"attachments:list": "ls -1 '05_Attachments/' | grep -v Organized | head -20",
"attachments:count": "ls -1 '05_Attachments/' | grep -v Organized | wc -l",
"attachments:organized": "ls -1 '05_Attachments/Organized' 2>/dev/null | wc -l || echo '0'",
@@ -33,5 +37,20 @@
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.0.0"
}
}
},
"devDependencies": {
"@eslint/compat": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-plugin-check-file": "^3.3.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-perfectionist": "^4.15.0",
"globals": "^16.2.0",
"prettier": "^3.6.0",
"prettier-plugin-packagejson": "^2.5.15",
"prettier-plugin-sort-json": "^4.1.1",
"typescript-eslint": "^8.35.0"
},
"packageManager": "pnpm@9.15.4"
}