@podlite/markdown
Version:
=markdown - markdown text block
49 lines • 1.29 kB
JSON
{
"name": "@podlite/markdown",
"version": "0.0.22",
"description": "=markdown - markdown text block",
"main": "./lib/index.cjs",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/podlite"
},
"scripts": {
"clean": "rm -rf dist lib esm tsconfig.tsbuildinfo",
"test": "yarn g:jest --passWithNoTests",
"build": "run-p build:cjs build:esm",
"build:cjs": "ts-node ./scripts/build.ts && tsc --declaration --emitDeclarationOnly",
"build:esm": "ts-node ./scripts/build_esm.ts"
},
"publishConfig": {
"access": "public",
"main": "./lib/index.cjs",
"types": "./lib/index.d.ts",
"module": "lib/index.esm.js"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 ",
"react-dom": "^16.0.0 || ^17.0.0"
},
"keywords": [
"markdown",
"podlite",
"markup",
"markup-language"
],
"dependencies": {
"@podlite/schema": "0.0.29",
"react": "^16.0.0 || ^17.0.0 ",
"react-dom": "^16.0.0 || ^17.0.0",
"react-is": "^17.0.0",
"remark-gfm": "^3.0.1",
"remark-math": "5.1.1",
"remark-parse": "^10.0.1",
"unified": "10.1.2"
},
"devDependencies": {
"esbuild": "^0.15.16",
"npm-run-all": "^4.1.5"
},
"module": "lib/index.esm.js"
}