mirror of
https://github.com/maws7140/vault-hub-plugin.git
synced 2026-07-22 06:49:30 +00:00
- Replace free-text path entry with searchable file pickers for notes, bundles, and screenshots - Fix crash (reading 'path') when publishing from a restored draft; guard empty selections - Make draft hydration type-aware so snippet/markdown/image selections restore correctly - Trim settings to just the GitHub token (remove Hub URL, Catalog repo, Default categories) - Remove dead path-parsing helpers; fix unnecessary type assertion in BrowseView
28 lines
772 B
JSON
28 lines
772 B
JSON
{
|
|
"name": "vault-hub-plugin",
|
|
"version": "1.0.4",
|
|
"description": "Obsidian plugin for Vault Hub community platform",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production",
|
|
"lint": "eslint src --ext .ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [],
|
|
"author": "Maws7140",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.4",
|
|
"@types/node": "^20.11.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.59.1",
|
|
"@typescript-eslint/parser": "^8.59.1",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.3.3",
|
|
"typescript-eslint": "^8.59.1"
|
|
}
|
|
}
|