2025-10-07 12:37:24 +00:00
{
2025-11-18 02:33:15 +00:00
"name" : "deck-notes" ,
2026-04-15 15:04:57 +00:00
"version" : "0.7.4" ,
2025-10-07 12:37:24 +00:00
"private" : true ,
2025-11-18 02:33:15 +00:00
"description" : "Define card decks for activities, strategies, or any content you want to rotate through. Embed cards in your notes or browse them in a modal. Filter by tag hierarchies to narrow your selection." ,
2025-10-07 12:37:24 +00:00
"main" : "main.js" ,
"scripts" : {
"dev" : "node esbuild.config.mjs" ,
"fix" : "npx @biomejs/biome check --write ./src" ,
"format" : "npx @biomejs/biome format ./src" ,
2025-11-18 03:09:55 +00:00
"eslint" : "npx eslint" ,
2025-10-07 12:37:24 +00:00
"lint" : "npx @biomejs/biome lint ./src" ,
"prebuild" : "npx @biomejs/biome check ./src" ,
"build" : "node esbuild.config.mjs production" ,
"postbuild" : "cp -v manifest.json README.md build" ,
"preversion" : "npm run build" ,
2025-11-18 03:09:55 +00:00
"version" : "auto-changelog -p" ,
"brat-notes" : "run() { auto-changelog --stdout --hide-credit --hide-empty-releases --template .github/changelog.hbs -v $1 --starting-version $1 > release-notes.md; }; run"
2025-10-07 12:37:24 +00:00
} ,
"keywords" : [
"obsidian" ,
"obsidian-md" ,
"obsidian-plugin" ,
"obsidian-md-plugin" ,
"flashcards"
] ,
"author" : "ebullient" ,
2025-11-19 02:35:34 +00:00
"repository" : "github.com:ebullient/obsidian-deck-notes" ,
2025-10-07 12:37:24 +00:00
"license" : "MIT" ,
"devDependencies" : {
2026-04-15 13:45:52 +00:00
"@biomejs/biome" : "2.4.7" ,
2026-04-15 13:49:27 +00:00
"@types/node" : "^25.5.0" ,
2025-11-18 03:09:55 +00:00
"@typescript-eslint/parser" : "^8.46.4" ,
2025-10-07 12:37:24 +00:00
"auto-changelog" : "^2.5.0" ,
"builtin-modules" : "^5.0.0" ,
2026-04-15 13:46:14 +00:00
"esbuild" : "^0.27.4" ,
2026-04-30 12:17:09 +00:00
"eslint" : "^10.1.0" ,
2026-04-30 12:15:26 +00:00
"eslint-plugin-obsidianmd" : "^0.2.9" ,
2025-11-18 03:09:55 +00:00
"moment" : "^2.30.1" ,
2026-01-03 14:18:40 +00:00
"obsidian" : "^1.11.0" ,
2025-10-07 12:37:24 +00:00
"tslib" : "^2.8.1" ,
2026-04-30 12:17:03 +00:00
"typescript" : "6.0.2"
2025-10-07 12:37:24 +00:00
} ,
2026-04-15 12:52:14 +00:00
"overrides" : {
"glob" : "13.0.6" ,
"minimatch" : "10.2.3"
} ,
2025-10-07 12:37:24 +00:00
"auto-changelog" : {
"backfillLimit" : false ,
"commitLimit" : false ,
2025-11-19 02:35:34 +00:00
"ignoreCommitPattern" : "(🔖|🔨|🧹|changelog|release|Update README).*" ,
"replaceText" : {
2025-11-22 02:41:52 +00:00
"([;.,] [rR]esolves) #\\d+\\.?\\s*$" : "$1" ,
"([;.,] [Ff]ixes) #\\d+\\.?\\s*$" : "$1"
2025-11-19 02:35:34 +00:00
}
2025-10-07 12:37:24 +00:00
}
}