mirror of
https://github.com/bitsofchris/openaugi-obsidian-plugin.git
synced 2026-07-22 05:46:42 +00:00
TaskDispatchService uses Node.js modules (child_process, fs, path) that are unavailable on Obsidian mobile. Switch to dynamic import with Platform.isMobile guard so the plugin loads cleanly on mobile while keeping full task dispatch functionality on desktop. - Use `import type` + dynamic `import()` for TaskDispatchService - Guard task dispatch commands behind Platform.isMobile check - Lazy-import detectTmuxPath in settings tab - Bump version to 0.5.2 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
683 B
JSON
27 lines
683 B
JSON
{
|
|
"name": "open-augi",
|
|
"version": "0.5.2",
|
|
"description": "",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "^0.17.3",
|
|
"obsidian": "^1.8.7",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^4.7.4",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|