package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@growi/codemirror-textlint",
  3. "version": "6.0.1-RC.0",
  4. "license": "MIT",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
  8. "clean": "npx -y shx rm -rf dist",
  9. "tsc": "tsc -p tsconfig.build.json",
  10. "tsc:w": "yarn tsc -w",
  11. "lint": "eslint src --ext .ts",
  12. "lint:fix": "eslint src --ext .ts --fix"
  13. },
  14. "dependencies": {},
  15. "devDependencies": {
  16. "@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.8",
  17. "@textlint/kernel": "^12.0.2",
  18. "@types/codemirror": "^5.60.2",
  19. "eslint-plugin-regex": "^1.8.0",
  20. "textlint-message-to-codemirror": "^1.0.0",
  21. "textlint-plugin-markdown": "^4.0.6",
  22. "textlint-rule-common-misspellings": "^1.0.1",
  23. "textlint-rule-date-weekday-mismatch": "^1.0.6",
  24. "textlint-rule-ja-hiragana-keishikimeishi": "^1.1.0",
  25. "textlint-rule-ja-no-abusage": "^3.0.0",
  26. "textlint-rule-ja-no-inappropriate-words": "^2.0.0",
  27. "textlint-rule-ja-no-mixed-period": "^2.1.1",
  28. "textlint-rule-ja-no-redundant-expression": "^4.0.0",
  29. "textlint-rule-ja-unnatural-alphabet": "^2.0.1",
  30. "textlint-rule-max-comma": "^2.0.2",
  31. "textlint-rule-max-kanji-continuous-len": "^1.1.1",
  32. "textlint-rule-max-ten": "^4.0.2",
  33. "textlint-rule-no-double-negative-ja": "^2.0.0",
  34. "textlint-rule-no-doubled-conjunction": "^2.0.2",
  35. "textlint-rule-no-doubled-joshi": "^4.0.0",
  36. "textlint-rule-no-dropping-the-ra": "^3.0.0",
  37. "textlint-rule-no-hankaku-kana": "^1.0.2",
  38. "textlint-rule-no-kangxi-radicals": "^0.2.0",
  39. "textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
  40. "textlint-rule-no-nfd": "^1.0.2",
  41. "textlint-rule-no-surrogate-pair": "^1.0.1",
  42. "textlint-rule-no-zero-width-spaces": "^1.0.1",
  43. "textlint-rule-period-in-list-item": "^0.3.2",
  44. "textlint-rule-prefer-tari-tari": "^1.0.3",
  45. "textlint-rule-sentence-length": "^3.0.0",
  46. "textlint-rule-use-si-units": "^1.0.2"
  47. },
  48. "peerDependencies": {
  49. "codemirror": "^5.62.3"
  50. }
  51. }