mirror of
https://github.com/edems-dev/md-discord-syntax.git
synced 2026-07-22 08:37:37 +00:00
43 lines
930 B
JSON
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"
|
|
}
|
|
}
|