1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 00:39:17 +08:00

125 lines
3.0 KiB
JSON
Raw Normal View History

{
"name": "md-editor-v3",
"version": "2.7.2",
"keywords": [
"vue",
"vue3",
"javascript",
"typescript",
"jsx",
"tsx",
"markdown",
"editor",
"theme",
"html"
],
"description": "Markdown editor for vue3, developed by jsx and typescript, dark theme、beautify content by prettier、render articles directly、paste or clip the picture and upload it...",
"author": {
"name": "zbf",
"url": "https://imzbf.cc"
},
"homepage": "https://imzbf.github.io/md-editor-v3/",
"repository": {
"type": "git",
"url": "git+https://github.com/imzbf/md-editor-v3.git"
},
"bugs": {
"url": "https://github.com/imzbf/md-editor-v3/issues"
},
"files": [
"lib"
],
"type": "module",
"types": "./lib/MdEditor/index.d.ts",
"main": "./lib/md-editor-v3.umd.js",
"module": "./lib/md-editor-v3.es.js",
"exports": {
".": {
"import": "./lib/md-editor-v3.es.js",
"require": "./lib/md-editor-v3.umd.js"
},
"./lib/style.css": "./lib/style.css"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@types/katex": "^0.14.0",
"@types/marked": "^4.0.7",
"@types/node": "16",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vavt/markdown-theme": "^1.1.0",
"@vitejs/plugin-vue": "^2.3.2",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/compiler-sfc": "^3.2.33",
"axios": "^0.27.2",
"copy-to-clipboard": "^3.3.1",
"cropperjs": "^1.5.13",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"highlight.js": "^11.7.0",
"katex": "^0.16.3",
"less": "^4.1.1",
"marked": "^4.2.3",
"medium-zoom": "^1.0.8",
"mermaid": "^9.2.2",
"multiparty": "^4.2.2",
"prettier": "^2.8.0",
"screenfull": "5.2.0",
"ts-morph": "^14.0.0",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vite-plugin-dts": "^0.9.2",
"vue": "^3.2.33",
"vue-tsc": "^0.34.12"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"semi": true,
"printWidth": 90,
"proseWrap": "never",
"endOfLine": "auto"
},
"engines": {
"node": ">=12.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}