mirror of
https://github.com/cupcakearmy/markdown-it-import.git
synced 2024-10-04 23:54:43 +02:00
48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"name": "@nicco.io/markdown-it-import",
|
|
"version": "1.0.1",
|
|
"description": "Markdown-it plugin which adds the ability to include markdown fragment files.",
|
|
"keywords": [
|
|
"markdown-it-plugin",
|
|
"markdown-it",
|
|
"markdown",
|
|
"include"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cupcakearmy/markdown-it-import"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "cupcakearmy",
|
|
"email": "hi@nicco.io",
|
|
"url": "https://github.com/cupcakearmy"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"types": "./dist/src/index.d.ts",
|
|
"files": [
|
|
"./dist"
|
|
],
|
|
"scripts": {
|
|
"build": "bun test && rm -rf ./dist && tsc && bun build ./src/index.ts --outfile dist/index.js --target node",
|
|
"prepublishOnly": "bun run build"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "latest",
|
|
"markdown-it": "^13.0.2",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|