mirror of
https://github.com/0xneobyte/VaultAI.git
synced 2026-07-22 13:10:30 +00:00
- Bot messages: no bubble, flat layout like ChatGPT - Two icon buttons (copy, file-plus) always visible below each response - Lucide icons throughout: send, mode, actions menu, dropdowns - Dropdown items: label + description stacked vertically - Actions menu icon: sliders-horizontal; Custom Prompts: layout-list - Text selection enabled on bot messages (user-select: text) - Remove all tooltips from action buttons to avoid overflow clipping Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
872 B
JSON
34 lines
872 B
JSON
{
|
|
"name": "vault-ai",
|
|
"version": "1.0.11",
|
|
"description": "Transform your note-taking with an intelligent AI assistant powered by Google's Gemini AI.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"ai",
|
|
"gemini",
|
|
"assistant",
|
|
"chatbot",
|
|
"notes"
|
|
],
|
|
"author": "Tharushka Dinujaya",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
"@typescript-eslint/parser": "^8.54.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "^0.27.2",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"@google/genai": "^1.29.1",
|
|
"@google/generative-ai": "^0.24.1"
|
|
}
|
|
}
|