mirror of
https://github.com/jochenbernard/obsidian-view-mode-rules.git
synced 2026-07-22 06:54:40 +00:00
* chore: prep repo for community.obsidian.md submission flow Wires up eslint-plugin-obsidianmd (the same rule set the new automated review pipeline uses) as `npm run lint` and a CI step, and rewrites the submission section of docs/PUBLISHING.md to point at the new developer dashboard instead of the deprecated obsidianmd/obsidian-releases PR workflow. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: resync package-lock with package.json Regenerated to satisfy `npm ci` in CI — the prior lockfile was inconsistent (missing @types/node 25.9.1, mismatched undici-types). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "view-mode-rules",
|
|
"version": "1.0.0",
|
|
"description": "Set a default view (editing or reading) per note or folder, without using frontmatter.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"install:plugin": "npm run build && node scripts/install-to-vault.mjs",
|
|
"lint": "eslint src/",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin"
|
|
],
|
|
"author": "Jochen Bernard",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jochenbernard/obsidian-view-mode-rules.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jochenbernard/obsidian-view-mode-rules/issues"
|
|
},
|
|
"homepage": "https://github.com/jochenbernard/obsidian-view-mode-rules#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^18.19.0",
|
|
"@typescript-eslint/parser": "^8.59.4",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "^0.25.0",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"obsidian": "^1.5.0",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.4.5",
|
|
"vitest": "^3.0.0"
|
|
}
|
|
}
|