package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "vditor",
  3. "version": "3.11.2",
  4. "description": "♏ 易于使用的 Markdown 编辑器,为适配不同的应用场景而生",
  5. "author": "Vanessa <[email protected]> (http://vanessa.b3log.org)",
  6. "homepage": "https://b3log.org/vditor",
  7. "jsdelivr": "dist/index.min.js",
  8. "main": "dist/index.js",
  9. "funding": "https://ld246.com/sponsor",
  10. "files": [
  11. "dist/*",
  12. "src/index.ts",
  13. "src/method.ts",
  14. "src/ts/*",
  15. "src/assets/*"
  16. ],
  17. "dependencies": {
  18. "diff-match-patch": "^1.0.5"
  19. },
  20. "types": "dist/index.d.ts",
  21. "devDependencies": {
  22. "@babel/core": "^7.26.0",
  23. "@babel/preset-env": "^7.26.0",
  24. "@eslint/js": "9.12.0",
  25. "@types/diff-match-patch": "^1.0.32",
  26. "@types/jest": "^26.0.23",
  27. "@types/node": "^17.0.19",
  28. "@types/puppeteer": "^2.1.5",
  29. "@typescript-eslint/eslint-plugin": "^8.9.0",
  30. "@typescript-eslint/parser": "^8.9.0",
  31. "autoprefixer": "^10.4.2",
  32. "babel-loader": "^9.2.1",
  33. "clean-webpack-plugin": "^4.0.0-alpha.0",
  34. "copy-webpack-plugin": "^6.4.1",
  35. "css-loader": "^5.2.4",
  36. "eslint": "^9.12.0",
  37. "eslint-plugin-jest": "^26.1.1",
  38. "eslint-plugin-prettier": "5.2.1",
  39. "file-loader": "^6.2.0",
  40. "html-webpack-plugin": "^5.3.1",
  41. "identity-obj-proxy": "^3.0.0",
  42. "jest": "^29.7.0",
  43. "less": "^4.2.0",
  44. "less-loader": "^10.2.0",
  45. "mini-css-extract-plugin": "^2.6.0",
  46. "postcss": "^8.4.12",
  47. "postcss-loader": "^5.2.0",
  48. "prettier": "3.4.1",
  49. "puppeteer": "^23.0.2",
  50. "style-loader": "^1.3.0",
  51. "terser-webpack-plugin": "^5.3.0",
  52. "ts-jest": "^26.5.6",
  53. "ts-loader": "^9.5.1",
  54. "typescript": "^4.9.5",
  55. "typescript-eslint": "^8.9.0",
  56. "webpack": "^5.66.0",
  57. "webpack-bundle-analyzer": "^4.10.2",
  58. "webpack-cli": "^5.1.4",
  59. "webpack-dev-server": "^5.1.0"
  60. },
  61. "license": "MIT",
  62. "repository": "git://github.com/Vanessa219/vditor.git",
  63. "bugs": {
  64. "url": "https://github.com/Vanessa219/vditor/issues"
  65. },
  66. "scripts": {
  67. "lint": "eslint eslint.config.mjs",
  68. "test:watch": "jest --watch",
  69. "test": "jest --coverage",
  70. "start": "webpack serve --config webpack.start.js",
  71. "build": "webpack"
  72. },
  73. "keywords": [
  74. "editor",
  75. "markdown",
  76. "b3log"
  77. ]
  78. }