mirror of
https://github.com/wiseguru/ReWrite-Voice-Notes.git
synced 2026-07-22 07:49:19 +00:00
Local npm run lint now enforces the three classes the community-review bot caught only at submission: - type-checked @typescript-eslint rules (no-deprecated, no-unsafe-*, no-unnecessary-type-assertion) scoped to src/ - no-unsupported-api (Obsidian API newer than manifest minAppVersion), cherry-picked from a 0.4.1 alias since the pinned 0.1.9 base lacks it - noInlineConfig, so an eslint-disable can no longer silence a rule Base plugin stays pinned at 0.1.9 (0.4.x's sentence-case diverges from the bot); only the single no-unsupported-api rule is taken from the alias. Docs: CLAUDE.md, RELEASING.md, release-checklist SKILL.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "rewrite-voice-notes",
|
|
"version": "1.2.1",
|
|
"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 .",
|
|
"test": "vitest run",
|
|
"review": "node local-review.mjs",
|
|
"review:docs": "node local-review.mjs --docs",
|
|
"release:prep": "node prepare-release-vault.mjs"
|
|
},
|
|
"keywords": [],
|
|
"license": "0BSD",
|
|
"devDependencies": {
|
|
"@eslint/js": "9.30.1",
|
|
"@types/node": "^20.19.0",
|
|
"esbuild": "0.25.5",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"jiti": "2.6.1",
|
|
"obsidianmd-latest": "npm:eslint-plugin-obsidianmd@0.4.1",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "8.35.1",
|
|
"vite-tsconfig-paths": "^6.1.1",
|
|
"vitest": "^3.2.7",
|
|
"yaml": "^2.9.0"
|
|
},
|
|
"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": "^1.10.3"
|
|
}
|
|
}
|