ebullient_obsidian-deck-notes/package.json

55 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2025-10-07 12:37:24 +00:00
{
2025-11-18 02:33:15 +00:00
"name": "deck-notes",
2026-06-03 14:16:19 +00:00
"version": "0.8.0",
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": {
"@biomejs/biome": "2.4.14",
"@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",
"esbuild": "^0.28.0",
"eslint-plugin-obsidianmd": "^0.3.0",
2026-06-03 14:14:16 +00:00
"obsidian": "^1.13.0",
2025-10-07 12:37:24 +00:00
"tslib": "^2.8.1",
"typescript": "6.0.3"
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
}
}