mirror of
https://github.com/0skater0/obsidian-custom-note-width.git
synced 2026-07-22 09:00:28 +00:00
Added a full Russian (ru) UI translation with automatic language detection. The locale covers every existing string and is selectable under Settings.
28 lines
918 B
JSON
28 lines
918 B
JSON
{
|
|
"name": "custom-note-width",
|
|
"version": "2.2.0",
|
|
"description": "A plugin for Obsidian that enables you to easily adjust the editor's line width on a note-by-note basis. You can do this by using a simple slider located in the status bar or the adjacent text box.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"lint": "eslint src/",
|
|
"format": "prettier --write src/",
|
|
"format:check": "prettier --check src/",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"builtin-modules": "^4.0.0",
|
|
"esbuild": "^0.25.0",
|
|
"eslint": "^9.0.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.0.0",
|
|
"typescript": "^5.7.0",
|
|
"typescript-eslint": "^8.0.0"
|
|
}
|
|
}
|