artemislin_memo-lite/package.json
ArtemisLin 2da1324d08 1.0.2: 回退 localStorage 迁移(App#saveLocalStorage 需要比 1.7.2 更新的 API 版本)
上一版把 localStorage 迁到 App#saveLocalStorage/loadLocalStorage 想消 warning,
反而触发 no-unsupported-api Error(该 API 晚于 minAppVersion 1.7.2 进入公开 typings)。
回退为 localStorage(仅 warning 不阻塞),minAppVersion 稳定在 1.7.2。

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-15 07:13:10 -04:00

28 lines
860 B
JSON

{
"name": "memo-lite",
"version": "1.0.2",
"description": "Capture fleeting notes and ideas quickly. Organize memos with tags, review them with an activity heatmap, search instantly, and share them as image cards.",
"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"
},
"keywords": [],
"author": "ArtemisLin",
"license": "MIT",
"devDependencies": {
"@codemirror/commands": "^6.10.3",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"html2canvas": "^1.4.1"
}
}