vitaliiromanenko_popcorn-md/package.json
VitaliiRomanenko 08223fa045 chore: release v0.2.1
Release v0.2.1 with typo fixes, keyboard navigation improvements, and
documentation updates.

- Fix multiple typos: AuthResponce → AuthResponse, GenreResponce →
  GenreResponse, FindResponce → FindResponse, defaultFoder → defaultFolder,
  TMDbGanreService → TMDbGenreService
- Rename "card" CSS class to "movie-item" for clarity
- Add arrow key navigation (Up/Down) for search results with focus indication
- Add Enter key selection for focused items and Escape key to close modal
- Improve error handling in TMDb API service for auth, rate limiting, and
  general errors
- Add template validation with clearer error messages
- Update LICENSE copyright to Vitalii Romanenko
- Update README with corrected plugin name and URLs
- Update manifest.json, package.json, and versions.json for v0.2.1
- Remove stale comment in searchModal.ts
- Fix release notes date in .github/workflows/release.yml

Breaking change: defaultFoder setting key renamed to defaultFolder.
Existing configurations will not migrate automatically.
2026-06-21 12:13:54 +03:00

33 lines
876 B
JSON

{
"name": "popcorn-md",
"version": "0.2.1",
"description": "Generate and manage movie-related notes using IMDb identifiers or movie titles.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint ."
},
"keywords": [],
"license": "0-BSD",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.17",
"esbuild": "0.25.5",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.3.0",
"globals": "^17.6.0",
"jest": "^30.4.2",
"jiti": "^2.6.1",
"obsidian": "latest",
"ts-jest": "^29.4.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.59.1"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
}
}