UNPKG

@sgawarat/remark-obsidian-wikilink

Version:

A remark plugin to add support for Obsidian-style wikilink syntax, like `[[path#heading|text]]`.

51 lines 1.31 kB
{ "name": "@sgawarat/remark-obsidian-wikilink", "type": "module", "version": "0.1.3", "description": "A remark plugin to add support for Obsidian-style wikilink syntax, like `[[path#heading|text]]`.", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "!dist/.tsbuildinfo" ], "keywords": [ "markdown", "remark", "remark-plugin", "obsidian", "wikilink" ], "author": "sgawarat", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/sgawarat/blog-theme.git", "directory": "libs/remark-obsidian-wikilink" }, "devDependencies": { "@biomejs/biome": "^2.3.8", "@types/node": "^24.10.1", "@typescript/native-preview": "7.0.0-dev.20251026.1", "micromark": "^4.0.2", "remark": "^15.0.1", "vitest": "^3.2.4" }, "dependencies": { "@types/mdast": "^4.0.4", "mdast-util-from-markdown": "^2.0.2", "micromark-util-symbol": "^2.0.1", "micromark-util-types": "^2.0.2", "unified": "^11.0.5", "unist-util-visit": "^5.0.0", "vfile": "^6.0.3" }, "scripts": { "build": "tsgo", "test": "vitest run", "lint": "biome lint .", "format": "biome format .", "lint:write": "biome lint --write .", "format:write": "biome format --write ." } }