53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "@portaljs/remark-wiki-link",
|
|
"version": "1.2.0",
|
|
"description": "Parse and render wiki-style links in markdown especially Obsidian style links.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/datopian/portaljs.git",
|
|
"directory": "packages/remark-wiki-link"
|
|
},
|
|
"keywords": [
|
|
"remark",
|
|
"remark-plugin",
|
|
"markdown",
|
|
"gfm",
|
|
"obsidian"
|
|
],
|
|
"author": "Rufus Pollock",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/datopian/portaljs/issues"
|
|
},
|
|
"homepage": "https://github.com/datopian/portaljs#readme",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"prepare": "nx build remark-wiki-link"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"mdast-util-to-markdown": "^1.5.0",
|
|
"mdast-util-wiki-link": "^0.0.2",
|
|
"micromark-util-symbol": "^1.0.1"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"micromark": "^3.1.0",
|
|
"remark-gfm": "^3.0.1"
|
|
}
|
|
}
|