mirror of
https://github.com/philemonchiro/obsidian-notekeeper.git
synced 2026-07-22 06:51:40 +00:00
main.ts is now the canonical source; main.js is the compiled artifact committed alongside so manual installs work without a build step. Class signatures and the public types (KeepCardsSettings, Filter, ParsedQuery, ColorDef, BatchState) are explicitly typed; tsconfig is lenient on implicit any and null checks to keep the diff against the hand-authored JS minimal for this initial port. Subsequent passes can tighten the types incrementally. Build: npm install && npm run build (or npm run dev for watch mode). Addresses the reviewer note in the obsidian-releases PR about needing the .ts source committed for transparency.
20 lines
596 B
JSON
20 lines
596 B
JSON
{
|
|
"name": "obsidian-notekeeper",
|
|
"version": "0.1.1",
|
|
"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",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "^0.21.0",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.4.0"
|
|
}
|
|
}
|