mirror of
https://github.com/dotwee/obsidian-raindropio-plugin.git
synced 2026-07-22 06:50:29 +00:00
- Add a note-aware explorer for browsing saved bookmarks and filtering from note context. - Support inline blocks, configurable tag behavior, and theme-friendly icon styling. - Prepare release metadata, documentation, licensing, and automated release assets.
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "obsidian-raindropio-plugin",
|
|
"version": "1.0.0",
|
|
"description": "Browse Raindrop.io links in Obsidian with note-aware search filters.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"author": "Lukas '@dotWee' Wolfsteiner <lukas@wolfsteiner.media> (http://lukas.wolfsteiner.media/)",
|
|
"homepage": "https://github.com/dotWee/obsidian-raindropio-plugin",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dotWee/obsidian-raindropio-plugin.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/dotWee/obsidian-raindropio-plugin/issues"
|
|
},
|
|
"license": "WTFPL",
|
|
"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 ."
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"raindrop.io",
|
|
"bookmarks"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"esbuild": "0.25.5",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "8.35.1",
|
|
"@eslint/js": "9.30.1",
|
|
"jiti": "2.6.1"
|
|
},
|
|
"dependencies": {
|
|
"obsidian": "latest"
|
|
}
|
|
}
|