package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@growi/remark-growi-directive",
  3. "version": "1.0.0",
  4. "description": "Remark plugin to support GROWI original directive (forked from remark-directive@3.0.0)",
  5. "license": "MIT",
  6. "keywords": [
  7. "unified",
  8. "remark",
  9. "remark-plugin",
  10. "plugin",
  11. "mdast",
  12. "markdown",
  13. "generic"
  14. ],
  15. "type": "module",
  16. "main": "dist/index.js",
  17. "typings": "dist/index.d.ts",
  18. "scripts": {
  19. "build": "tsc -p tsconfig.build.json",
  20. "postbuild": "cpy src/mdast-util-growi-directive/index.d.ts dist/mdast-util-growi-directive/",
  21. "clean": "rimraf dist",
  22. "dev": "pnpm run build",
  23. "watch": "tsc -w",
  24. "test": "cross-env NODE_ENV=test npm run test-coverage",
  25. "test-api": "vitest run --coverage",
  26. "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api",
  27. "lint": "biome check",
  28. "lint:fix": "biome check --write"
  29. },
  30. "dependencies": {
  31. "@types/mdast": "^4.0.4",
  32. "@types/unist": "^3.0.0",
  33. "mdast-util-to-markdown": "^2.1.0",
  34. "micromark-factory-space": "^2.0.0",
  35. "micromark-factory-whitespace": "^2.0.0",
  36. "micromark-util-character": "^2.1.0",
  37. "micromark-util-symbol": "^2.0.0",
  38. "micromark-util-types": "^2.0.0",
  39. "parse-entities": "^4.0.0",
  40. "stringify-entities": "^4.0.0",
  41. "unified": "^11.0.0",
  42. "unist-util-visit-parents": "^6.0.0",
  43. "uvu": "^0.5.0"
  44. },
  45. "devDependencies": {
  46. "c8": "^8.0.0",
  47. "html-void-elements": "^2.0.0",
  48. "is-hidden": "^2.0.0",
  49. "mdast-util-from-markdown": "^2.0.1",
  50. "micromark": "^4.0.0",
  51. "remark": "^15.0.1",
  52. "rimraf": "^6.1.3",
  53. "to-vfile": "^7.0.0",
  54. "type-coverage": "^2.0.0",
  55. "unist-util-remove-position": "^5.0.0"
  56. },
  57. "typeCoverage": {
  58. "atLeast": 100,
  59. "detail": true,
  60. "strict": true,
  61. "ignoreCatch": true
  62. }
  63. }