Files
obsidian-remarkable/package.json
T
fegger ff21ec921a Add test script and initial test suite
The test runner bundles TypeScript tests with esbuild and executes them using Node's built-in test runner. Tests cover
document downloader behavior, path utilities, rmapi bridge configuration, style refinement, and ZIP file handling. Mock
implementations for Obsidian plugin interfaces enable isolated unit testing.
2026-05-31 16:33:30 +02:00

16 lines
390 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",
"test": "node tests/run-tests.mjs"
},
"devDependencies": {
"@types/node": "^20.0.0",
"esbuild": "^0.19.0"
}
}