edems-dev_md-discord-syntax/packages/remark/package.json
2026-07-21 17:45:00 +02:00

43 lines
930 B
JSON

{
"name": "@edems-dev/remark-discord-syntax",
"version": "1.0.0",
"description": "Remark plugin for Discord-style spoiler blocks and subtext lines in MDX",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"test": "tsx --test tests/*.test.ts"
},
"keywords": [
"remark",
"remark-plugin",
"mdx",
"discord",
"spoiler",
"subtext",
"markdown"
],
"author": "Edems-DEV",
"license": "GPL-3.0",
"dependencies": {
"@edems-dev/md-discord-syntax-core": "^1.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"remark": "^15.0.1"
}
}