package.json 1.4 KB

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