mirror of
https://github.com/amatya-aditya/advanced-multi-column.git
synced 2026-07-22 14:30:28 +00:00
- fix: plugin failed to load on Obsidian 1.13.0 (harden runtime stylesheet setup against missing activeDocument / constructed-sheet errors with a <style> fallback) - fix(css): cut !important from 260 to 28 via specificity, eliminate all :has (16) and the multicolumn column-gap warnings; replace :has rules with JS-tagged classes (amc-link-line, columns-suggest-with-icon) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
34 lines
937 B
JSON
34 lines
937 B
JSON
{
|
|
"name": "advanced-multi-column",
|
|
"version": "1.2.4",
|
|
"description": "Allows you to create columns in Obsidian Markdown.",
|
|
"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 .",
|
|
"setup:hooks": "node scripts/setup-git-hooks.mjs",
|
|
"commit": "node scripts/commit.mjs"
|
|
},
|
|
"keywords": [],
|
|
"license": "0-BSD",
|
|
"devDependencies": {
|
|
"@codemirror/language": "^6.12.1",
|
|
"@codemirror/state": "6.5.0",
|
|
"@codemirror/view": "6.38.6",
|
|
"@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": {
|
|
"obsidian": "1.10.3"
|
|
}
|
|
}
|