ebullient_obsidian-deck-notes/package.json
2026-05-11 17:24:15 -04:00

54 lines
1.8 KiB
JSON

{
"name": "deck-notes",
"version": "0.7.5",
"private": true,
"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.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"fix": "npx @biomejs/biome check --write ./src",
"format": "npx @biomejs/biome format ./src",
"eslint": "npx eslint",
"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",
"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"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"obsidian-md-plugin",
"flashcards"
],
"author": "ebullient",
"repository": "github.com:ebullient/obsidian-deck-notes",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "^25.5.0",
"@typescript-eslint/parser": "^8.46.4",
"auto-changelog": "^2.5.0",
"esbuild": "^0.28.0",
"eslint-plugin-obsidianmd": "^0.2.9",
"obsidian": "^1.11.0",
"tslib": "^2.8.1",
"typescript": "6.0.2"
},
"overrides": {
"glob": "13.0.6",
"minimatch": "10.2.3"
},
"auto-changelog": {
"backfillLimit": false,
"commitLimit": false,
"ignoreCommitPattern": "(🔖|🔨|🧹|changelog|release|Update README).*",
"replaceText": {
"([;.,] [rR]esolves) #\\d+\\.?\\s*$": "$1",
"([;.,] [Ff]ixes) #\\d+\\.?\\s*$": "$1"
}
}
}