mirror of
https://github.com/unabyss/obsidian-plugin.git
synced 2026-07-22 07:47:17 +00:00
- manifest: drop redundant "Obsidian" from description - settings: render logo as inline themed SVG (no shipped image assets, adapts via currentColor), move all inline styles to styles.css, use Setting().setHeading() for section headers, drop document/activeDocument access, and avoid returning a promise from a void event handler - syncInbound: use FileManager.trashFile to respect the user's deletion preference instead of Vault.trash - main: type catch parameters as unknown (no unsafe any) - apiClient: optional catch binding for the unused error - build: replace builtin-modules package with node:module builtinModules - release CI: attach only main.js/manifest.json/styles.css and add build provenance attestations - versions.json: backfill 1.0.1 and 1.1.1 Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
940 B
JSON
32 lines
940 B
JSON
{
|
|
"name": "obsidian-plugin-unabyss",
|
|
"version": "1.0.0",
|
|
"description": "Two-way OAuth sync between your Obsidian vault and Unabyss.",
|
|
"main": "main.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"typecheck": "tsc -noEmit -skipLibCheck",
|
|
"test": "jest",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"unabyss"
|
|
],
|
|
"author": "Unabyss",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.11.0",
|
|
"esbuild": "^0.21.5",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "^1.5.7",
|
|
"ts-jest": "^29.1.5",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"packageManager": "pnpm@11.1.3"
|
|
}
|