polygonhunter_searchosaurus/package.json
polygonhunter 2e03e8c215 1.0.0: mobile spacing polish — and out of the zero-dot era
Phone layout gets an even rhythm: roomier input, filter row with real
breathing space aligned to the input edges, consistent list padding
with safe-area clearance above the home indicator, slightly larger
filter icons, and settled line heights on result rows.

With the search core, ranking tiers, operators, preview, keyboard
layer, offline OCR, and a clean review pass all in place, this is 1.0.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-17 10:36:58 +00:00

34 lines
909 B
JSON

{
"name": "searchosaurus",
"version": "1.0.0",
"description": "Spotlight-style search for Obsidian — exact-title results first, type filters, and offline OCR that makes text in images and PDFs findable.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest",
"fetch-ocr-assets": "node scripts/fetch-ocr-assets.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"search",
"ocr"
],
"author": "polygonhunter",
"license": "MIT",
"devDependencies": {
"@types/node": "^22",
"esbuild": "0.25.5",
"obsidian": "latest",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"fflate": "^0.8.2",
"minisearch": "^7.1.0",
"tesseract.js": "^6.0.1"
}
}