mirror of
https://github.com/wiseguru/ReWrite-Voice-Notes.git
synced 2026-07-22 07:49:19 +00:00
Fix Obsidian secret storage detection failing on all platforms. app.secretStorage.setSecret rejects any id that is not lowercase alphanumeric + dashes, so the colon-namespaced ids and the underscore self-test id made the availability probe throw and report secretStorage unavailable on every platform. Switch all secret ids (namespace separator, self-test id, per-profile key ids) to dash-joined form. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
896 B
JSON
33 lines
896 B
JSON
{
|
|
"name": "rewrite-voice-notes",
|
|
"version": "1.0.3",
|
|
"description": "Record or paste speech and have it transcribed and structured by AI.",
|
|
"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": "0BSD",
|
|
"devDependencies": {
|
|
"@eslint/js": "9.30.1",
|
|
"@types/node": "^16.11.6",
|
|
"esbuild": "0.25.5",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"jiti": "2.6.1",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "8.35.1"
|
|
},
|
|
"dependencies": {
|
|
"@zxcvbn-ts/core": "^3.0.4",
|
|
"@zxcvbn-ts/language-common": "^3.0.4",
|
|
"@zxcvbn-ts/language-en": "^3.0.2",
|
|
"hash-wasm": "^4.12.0",
|
|
"obsidian": "latest"
|
|
}
|
|
}
|