2f14e8c1fa
The new `install-plugin` script automates plugin installation to Obsidian vaults with support for both vault paths and direct plugin directory targets. It includes options for skipping builds and dry runs. Documentation in IMPLEMENTATION.md now includes usage examples for the new installation method alongside the existing manual installation instructions.
17 lines
440 B
JSON
17 lines
440 B
JSON
{
|
|
"name": "obsidian-remarkable",
|
|
"version": "0.1.0",
|
|
"description": "Obsidian plugin for reMarkable tablet sync and handwriting OCR",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"build": "node esbuild.config.mjs",
|
|
"dev": "node esbuild.config.mjs --watch",
|
|
"install-plugin": "node scripts/install.mjs",
|
|
"test": "node tests/run-tests.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"esbuild": "^0.19.0"
|
|
}
|
|
}
|