lemon695_obsidian-note-imag.../package.json
Lemon695 fe9dda8898 Harden the release branch for Obsidian market submission
Constraint: Keep the plugin release-safe without introducing new dependencies
Rejected: Commit the branch with mismatched version metadata and missing release verifier | that would leave the release flow broken
Confidence: high
Scope-risk: moderate
Directive: Keep package, manifest, and versions metadata aligned before cutting future release tags
Tested: npm run verify:release; npm run lint; npm run build
Not-tested: Real Obsidian desktop and mobile smoke tests on this branch
2026-06-08 16:21:05 +08:00

41 lines
1.1 KiB
JSON

{
"name": "obsidian-note-image-gallery",
"version": "1.1.0",
"description": "An Obsidian plugin to display note's images in a gallery view",
"main": "main.js",
"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",
"verify:release": "node scripts/verify-release.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"gallery",
"images",
"markdown",
"note"
],
"author": "",
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-obsidianmd": "^0.1.8",
"globals": "^16.5.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "5.4.5",
"typescript-eslint": "^8.46.3"
}
}