mirror of
https://github.com/philemonchiro/obsidian-notekeeper.git
synced 2026-07-22 06:51:40 +00:00
- New "Flat sticky notes" setting disables the per-card wall rotation. Requested by a Reddit user who wanted notes to sit perfectly straight. - Drop the third-party "builtin-modules" dependency in favor of Node's built-in node:module.builtinModules — addresses a directory-scanner hygiene warning. - Drop text-decoration-color on colored-card links, since it was only partially supported by Obsidian's bundled Chromium and the inherited underline color reads fine. - Add CONTRIBUTING.md covering build, dev, PR conventions, and the release workflow.
25 lines
732 B
JSON
25 lines
732 B
JSON
{
|
|
"name": "obsidian-notekeeper",
|
|
"version": "0.2.5",
|
|
"description": "Browse your vault as a Google Keep-style masonry of cards. Quick capture, pin, color, archive, and filter notes by labels.",
|
|
"author": "Philemon Chiro",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@typescript-eslint/parser": "^8.59.1",
|
|
"esbuild": "^0.21.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.4.0"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": ["esbuild"]
|
|
}
|
|
}
|