UNPKG

vue-showdown

Version:

Use showdown as a vue component

92 lines 2.73 kB
{ "name": "vue-showdown", "version": "4.2.0", "description": "Use showdown as a vue component", "keywords": [ "vue", "showdown" ], "homepage": "https://vue-showdown.js.org", "repository": { "type": "git", "url": "git+https://github.com/meteorlxy/vue-showdown.git" }, "license": "MIT", "author": "meteorlxy <meteor.lxy@foxmail.com> (https://www.meteorlxy.cn)", "type": "module", "exports": { ".": { "import": { "types": "./dist/vue-showdown.d.ts", "default": "./dist/vue-showdown.esm.js" }, "require": { "types": "./dist/vue-showdown.d.ts", "default": "./dist/vue-showdown.cjs.js" } }, "./package.json": "./package.json" }, "main": "./dist/vue-showdown.cjs.js", "unpkg": "./dist/vue-showdown.min.js", "module": "./dist/vue-showdown.esm.js", "browser": "./dist/vue-showdown.min.js", "types": "./dist/vue-showdown.d.ts", "files": [ "dist" ], "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "lint-staged": { "**/*": "prettier --write --ignore-unknown", "*.{js,ts,vue}": "eslint --fix", "package.json": "sort-package-json" }, "prettier": "@meteorlxy/prettier-config", "dependencies": { "@types/showdown": "^2.0.1", "showdown": "^2.1.0", "vue": "^3.3.4" }, "devDependencies": { "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@meteorlxy/eslint-config-prettier": "^2.27.3", "@meteorlxy/eslint-config-prettier-typescript-vue": "^2.28.0", "@meteorlxy/prettier-config": "^2.11.0", "@meteorlxy/tsconfig": "^2.23.1", "@rollup/plugin-terser": "^0.4.3", "@vitejs/plugin-vue": "^4.3.3", "@vuepress/client": "2.0.0-beta.66", "@vuepress/utils": "2.0.0-beta.66", "conventional-changelog-cli": "^4.0.0", "eslint": "^8.48.0", "husky": "^8.0.3", "lint-staged": "^14.0.1", "prettier": "^3.0.2", "rimraf": "^5.0.1", "rollup": "^3.28.1", "rollup-plugin-dts": "^6.0.0", "rollup-plugin-typescript2": "^0.35.0", "sort-package-json": "^2.5.1", "typescript": "^5.2.2", "vite": "~4.4.9", "vuepress": "2.0.0-beta.66" }, "packageManager": "pnpm@8.6.12", "engines": { "node": ">=16.19.0" }, "scripts": { "build": "rimraf dist && rollup --config rollup.config.js && rimraf dist/types", "dev": "vite", "docs:build": "vuepress build docs", "docs:dev": "vuepress dev docs", "format": "prettier --write .", "lint": "eslint --ext .js,.ts,.vue . && prettier --check .", "version": "pnpm lint && pnpm build && conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add dist CHANGELOG.md" } }