lossless-group_image-gin/package.json
mpstaton d3d7a6a626 chore(release): 0.2.3 — workflow-driven releases + artifact attestations + log.json gitignored
Three things bundled:

1. Release workflow at .github/workflows/release.yml fires on every 3-digit-semver tag push. Builds main.js + styles.css in a clean Ubuntu runner, signs all three release assets via actions/attest-build-provenance@v1 (sigstore-backed via OIDC), creates the GitHub Release with notes pulled from release-notes/<tag>.md. Identical to the workflow landing across cite-wide, perplexed, metafetch as a family-wide pattern.

2. release-notes/0.2.3.md authored in marketing-shape per content-farm/context-v/skills/changelog-conventions/SKILL.md "These are marketing artifacts" section. Convention going forward: every release's body lives in the repo at this path before the tag is pushed.

3. log.json now in .gitignore — runtime plugin telemetry that captures at first-run per-vault, never source-of-truth. Was tracked accidentally in earlier commits; this stops the dirty-tree noise on every git status.

Version bumped 0.2.2 → 0.2.3 across manifest.json / package.json / versions.json. No source-code changes — Drop Gate, Recraft generation, Ideogram v3, Magnific search, ImageKit upload all behave identically to 0.2.2.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 03:09:02 -05:00

34 lines
1,004 B
JSON

{
"name": "image-gin",
"version": "0.2.3",
"description": "Generate AI images, search stock images, and upload to ImageKit CDN.",
"main": "main.js",
"scripts": {
"setup": "node setup-plugin.mjs",
"dev": "node esbuild.config.mjs",
"lint": "eslint . --report-unused-disable-directives",
"build": "eslint . --report-unused-disable-directives && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"Obsidian",
"Plugin",
"Image-Generation",
"Image-Generators",
"API-Integration"
],
"author": "The Lossless Group",
"license": "The Unlicense",
"devDependencies": {
"@eslint/plugin-kit": "^0.7.1",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"esbuild": "0.28.0",
"eslint": "^10.3.0",
"eslint-plugin-obsidianmd": "^0.2.9",
"obsidian": "latest",
"tslib": "2.8.1",
"typescript": "6.0.3"
}
}