UNPKG

@uiw/react-md-editor

Version:

A markdown editor with preview, implemented with React.js and TypeScript.

62 lines (61 loc) 1.71 kB
{ "name": "@uiw/react-md-editor", "version": "3.19.1", "description": "A markdown editor with preview, implemented with React.js and TypeScript.", "homepage": "https://uiwjs.github.io/react-md-editor/", "author": "kenny wang <wowohoo@qq.com>", "main": "lib/index.js", "module": "esm/index.js", "scripts": { "css:build": "compile-less -d src -o esm", "css:watch": "compile-less -d src -o esm --watch", "css:build:dist": "compile-less -d src --combine markdown-editor.css --rm-global", "bundle": "ncc build src/index.tsx --target web --filename mdeditor", "bundle:watch": "ncc watch src/index.tsx --target web --filename mdeditor", "bundle:min": "ncc build src/index.tsx --target web --filename mdeditor --minify", "watch": "tsbb watch & npm run css:watch", "build": "tsbb build && npm run css:build && npm run css:build:dist", "test": "tsbb test --env=jsdom", "coverage": "tsbb test --env=jsdom --coverage --bail" }, "repository": { "type": "git", "url": "https://github.com/uiwjs/react-md-editor" }, "files": [ "markdown-editor.css", "lib", "dist", "esm", "src" ], "license": "MIT", "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "dependencies": { "@babel/runtime": "^7.14.6", "@uiw/react-markdown-preview": "^4.0.24", "rehype": "~12.0.1" }, "keywords": [ "react", "editor", "md-editor", "markdown", "react-markdown", "react-md-editor", "react-markdown-editor", "markdown-editor", "md", "uiw", "uiwjs", "code" ], "jest": { "transformIgnorePatterns": [ "<rootDir>/node_modules/?!(.*)" ] } }