mirror of
https://github.com/formax68/memoChron.git
synced 2026-07-22 12:30:31 +00:00
The 1.15.0-beta.1 bump on main caused Obsidian install/update failures because no published GitHub release exists for that tag — Obsidian and BRAT fetch release assets by tag and 404 against the missing release. Revert manifest.json, package.json, and versions.json back to 1.14.0 (which has a real published release) so installs and updates work again. The historical 1.15.0-beta.1 git tag is intentionally left in place as a CI test artifact.
39 lines
1,023 B
JSON
39 lines
1,023 B
JSON
{
|
|
"name": "memochron",
|
|
"version": "1.14.0",
|
|
"description": "Calendar integration and note creation plugin for Obsidian",
|
|
"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",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"calendar",
|
|
"notes"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/luxon": "^3.6.2",
|
|
"@types/node": "^16.11.6",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"globals": "^14.0.0",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.59.3"
|
|
},
|
|
"dependencies": {
|
|
"ical.js": "^1.5.0",
|
|
"luxon": "^3.6.1",
|
|
"obsidian-daily-notes-interface": "^0.9.4"
|
|
}
|
|
}
|