项目初始化搭建完成
Showing
.gitignore
0 → 100644
index.html
0 → 100644
package.json
0 → 100644
{ | ||
"name": "coopwire-markdown-render", | ||
"version": "1.0.0", | ||
"description": "一个和编辑器配套的库,用于解析编辑器输出的内容,将markdown解析为html文本,支持自定义指令", | ||
"main": "lib/index.cjs.js", | ||
"module": "lib/index.esm.js", | ||
"browser": "lib/index.umd.js", | ||
"types": "lib/type.d.js", | ||
"dependencies": { | ||
"highlight.js": "^11.11.1", | ||
"mdast-util-directive": "^3.1.0", | ||
"mdast-util-from-markdown": "^2.0.2", | ||
"mdast-util-gfm": "^3.1.0", | ||
"micromark": "^4.0.2", | ||
"micromark-extension-directive": "^4.0.0", | ||
"micromark-extension-gfm": "^3.0.0", | ||
"rollup": "^4.35.0" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-node-resolve": "^16.0.1", | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"rollup-plugin-copy": "^3.5.0", | ||
"rollup-plugin-delete": "^3.0.1", | ||
"rollup-plugin-typescript2": "^0.36.0", | ||
"typescript": "^5.8.2" | ||
}, | ||
"scripts": { | ||
"build": "rollup --config" | ||
}, | ||
"engine-strict": true, | ||
"engines": { | ||
"node": ">=21.6.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "ssh://git@gitlab.logwire.cn:13389/leon.sun/markdown-render.git" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC" | ||
} |
rollup.config.mjs
0 → 100644
src/extension/index.ts
0 → 100644
src/index.ts
0 → 100644
test.js
0 → 100644
tsconfig.json
0 → 100644
type.d.ts
0 → 100644
Please register or sign in to comment