ebullient_obsidian-deck-notes/package.json
dependabot[bot] 07638a8bcd
Bump @types/node from 24.7.0 to 24.7.1
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.7.0 to 24.7.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.7.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-17 22:18:31 -05:00

49 lines
1.7 KiB
JSON

{
"name": "deck-notes",
"version": "0.1.0",
"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-flashcards",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@types/node": "^24.8.1",
"@typescript-eslint/parser": "^8.46.4",
"auto-changelog": "^2.5.0",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.9",
"eslint": "^9.39.1",
"eslint-plugin-obsidianmd": "^0.1.9",
"moment": "^2.30.1",
"obsidian": "^1.10.2",
"tslib": "^2.8.1",
"typescript": "5.9.3"
},
"auto-changelog": {
"backfillLimit": false,
"commitLimit": false,
"ignoreCommitPattern": "(🔖|🔨|🧹|changelog|release|Update README).*"
}
}