package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "rollup-plugin-md-ts",
  3. "version": "0.0.3",
  4. "description": "a rollup plugin for markdown files",
  5. "type": "module",
  6. "types": "./dist/index.d.ts",
  7. "exports": {
  8. ".": {
  9. "default": "./dist/index.js",
  10. "types": "./dist/index.d.ts"
  11. }
  12. },
  13. "files": [
  14. "dist/**"
  15. ],
  16. "scripts": {
  17. "pretest": "npm run build",
  18. "build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
  19. "prebuild": "rm -rf dist/*"
  20. },
  21. "keywords": [
  22. "rollup",
  23. "plugin",
  24. "md",
  25. "markdown",
  26. "typescript",
  27. "vite",
  28. "STDF"
  29. ],
  30. "author": "any-tdf",
  31. "funding": "https://stdf.design?fund",
  32. "license": "MIT",
  33. "homepage": "https://github.com/any-tdf/stdf/blob/main/packages/rollup-plugin-md-ts/README.md",
  34. "repository": {
  35. "type": "git",
  36. "url": "https://github.com/any-tdf/stdf"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/any-tdf/stdf/issues?q=is:issue+is:open+md"
  40. },
  41. "dependencies": {
  42. "marked": "^15.0.3",
  43. "rollup": "^4.28.1",
  44. "rollup-pluginutils": "^2.8.2"
  45. },
  46. "devDependencies": {
  47. "@eslint/js": "^9.16.0",
  48. "@rollup/plugin-json": "^6.1.0",
  49. "@rollup/plugin-node-resolve": "^15.3.0",
  50. "@rollup/plugin-terser": "^0.4.4",
  51. "@rollup/plugin-typescript": "^12.1.1",
  52. "assert": "^2.1.0",
  53. "eslint": "^9.16.0",
  54. "eslint-config-prettier": "^9.1.0",
  55. "fs": "^0.0.1-security",
  56. "globals": "^15.13.0",
  57. "mocha": "^11.0.1",
  58. "source-map-support": "^0.5.21",
  59. "tslib": "^2.8.1",
  60. "typescript": "^5.7.2",
  61. "typescript-eslint": "^8.18.0"
  62. }
  63. }