discord-markdown-parser
Version:
Parse discord-style markdown into an abstract syntax tree.
42 lines • 1.17 kB
JSON
{
"name": "discord-markdown-parser",
"version": "1.3.1",
"description": "Parse discord-style markdown into an abstract syntax tree.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/ItzDerock/discord-markdown-parser",
"repository": {
"type": "git",
"url": "git+https://github.com/ItzDerock/discord-markdown-parser"
},
"keywords": [
"discord",
"markdown",
"parser",
"discord-markdown-parser",
"discord-markdown",
"simple-markdown",
"discord-parser"
],
"author": "Derock <derock@derock.dev>",
"license": "Apache License",
"devDependencies": {
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"colorette": "^2.0.20",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b src",
"format": "prettier --write --cache \"{src,scripts,tests}/**/*.{mjs,ts,js}\"",
"format:check": "prettier --check --cache \"{src,scripts,tests}/**/*.{mjs,ts,js}\"",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"release": "npm run build && npm pack"
}
}