mirror of
https://github.com/m-kk/toc.git
synced 2026-07-22 16:30:27 +00:00
- src/toc-section.ts: string-derived TOC section find/remove/insert - src/toc-generator.ts: TOC rendering with injected stripHeadingForLink - src/heading-filter.ts: pattern validation/compilation, heading filtering - 43 unit tests covering detection, insertion, idempotence, filtering
26 lines
710 B
JSON
26 lines
710 B
JSON
{
|
|
"name": "obsidian-toc-generator",
|
|
"version": "1.1.0",
|
|
"description": "Table of Contents Generator for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "vitest run",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^22.20.1",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.25.9",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4",
|
|
"vitest": "^4.1.10"
|
|
}
|
|
}
|