mirror of
https://github.com/grmartin/obsidian-toc-block-plugin.git
synced 2026-07-22 08:33:49 +00:00
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "toc-block",
|
|
"version": "1.0.1",
|
|
"description": "Renders a live table of contents wherever you type a Typora-style [TOC] tag (or your own regex pattern). Insert it via command or right-click menu, show it as links or hide it in Live Preview, and get real clickable heading links in Reading View.",
|
|
"author": "Glenn R. Martin",
|
|
"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": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"toc",
|
|
"table-of-contents"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@codemirror/state": "^6.5.0",
|
|
"@codemirror/view": "^6.38.0",
|
|
"@eslint/js": "^9.39.4",
|
|
"@types/node": "^22.15.17",
|
|
"esbuild": "0.25.5",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.4.0",
|
|
"globals": "^17.6.0",
|
|
"jiti": "^2.6.1",
|
|
"obsidian": "^1.13.1",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.59.1"
|
|
}
|
|
}
|