markdown-it-import/package.json

48 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2023-11-16 12:29:00 +00:00
{
"name": "@nicco.io/markdown-it-import",
2023-11-16 14:43:48 +00:00
"version": "1.0.1",
2023-11-16 12:29:00 +00:00
"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": {
2023-11-16 14:13:19 +00:00
"build": "bun test && rm -rf ./dist && tsc && bun build ./src/index.ts --outfile dist/index.js --target node",
"prepublishOnly": "bun run build"
2023-11-16 12:29:00 +00:00
},
"devDependencies": {
2024-10-07 09:11:19 +00:00
"@types/bun": "^1.1.10",
"markdown-it": "^14.1.0",
"typescript": "^5.6.2"
2023-11-16 12:29:00 +00:00
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}