ebullient_obsidian-deck-notes/package.json

58 lines
1.9 KiB
JSON
Raw Normal View History

2025-10-07 12:37:24 +00:00
{
2025-11-18 02:33:15 +00:00
"name": "deck-notes",
2026-01-03 14:57:26 +00:00
"version": "0.7.3",
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.7",
"@types/node": "^24.8.1",
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",
"esbuild": "^0.27.4",
2025-11-18 03:09:55 +00:00
"eslint": "^9.39.1",
"eslint-plugin-obsidianmd": "^0.1.9",
"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",
"typescript": "5.9.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
}
}