mirror of
https://github.com/ashwin271/obsidian-vector-search.git
synced 2026-07-22 11:50:31 +00:00
51 lines
No EOL
1.5 KiB
JSON
51 lines
No EOL
1.5 KiB
JSON
{
|
|
"name": "vector-search",
|
|
"version": "0.1.0",
|
|
"description": "Semantic search for your notes using Ollama and nomic-embed-text embeddings. Requires Ollama installation.",
|
|
"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",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "jest",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"vector-search",
|
|
"semantic-search",
|
|
"ollama",
|
|
"embeddings",
|
|
"ai",
|
|
"machine-learning"
|
|
],
|
|
"author": "Ashwin A Murali",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4",
|
|
"jest": "^29.0.0",
|
|
"@types/jest": "^29.0.0"
|
|
},
|
|
"dependencies": {
|
|
"node-fetch": "^3.3.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ashwin271/obsidian-vector-search"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ashwin271/obsidian-vector-search/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
} |