mirror of
https://github.com/srwildman/Obsidian-Gitlab-Inbox.git
synced 2026-07-22 06:55:17 +00:00
- sentence case for all UI text (enum values, labels, headings, buttons) - await workspace.revealLeaf (was floating promise) - activeWindow.setTimeout with block-body arrows (no-misused-promises) - window -> activeWindow for popout window compatibility - window.moment() -> obsidian module moment export - bump minAppVersion to 1.7.2 (required by revealLeaf) - add eslint-plugin-obsidianmd for local validation
31 lines
790 B
JSON
31 lines
790 B
JSON
{
|
|
"name": "obsidian-gitlab-inbox",
|
|
"version": "1.0.0",
|
|
"description": "Auto-refreshing GitLab inbox for Obsidian with check-off support.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"lint": "eslint src/"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"gitlab",
|
|
"inbox",
|
|
"code-review"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@eslint/json": "^1.2.0",
|
|
"@types/node": "^22.0.0",
|
|
"@typescript-eslint/parser": "^8.59.0",
|
|
"esbuild": "^0.25.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.2.4",
|
|
"obsidian": "latest",
|
|
"typescript": "^5.8.0",
|
|
"typescript-eslint": "^8.59.0"
|
|
}
|
|
}
|