mirror of
https://github.com/kwhittle/obsidian-github-tools.git
synced 2026-07-22 07:44:31 +00:00
- Replace fetch with Obsidian requestUrl; add typed GitHub API interfaces - Replace all `any` types and catch blocks with proper types + errorMessage helper - Replace createEl headings with new Setting().setHeading() - Add void operator to all async event handlers in void context - Fix unawaited promises (revealLeaf, activateView, saveSettings) - Replace setTimeout with window.setTimeout throughout - Remove unnecessary type assertions (createEl already returns typed elements) - Replace this.display() calls with targeted DOM updates via updateDetectedInfo() - Bump minAppVersion to 1.1.3 to match APIs used - Replace builtin-modules package with Node built-in builtinModules - Add GitHub Actions release workflow with artifact attestations Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
500 B
JSON
20 lines
500 B
JSON
{
|
|
"name": "obsidian-github-tools",
|
|
"version": "1.0.0",
|
|
"description": "GitHub wiki repo monitor for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
|
|
},
|
|
"keywords": [],
|
|
"author": "Kyle Whittle",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|