package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. "scripts": {
  13. "pretest": "npm run build",
  14. "build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
  15. "prebuild": "rm -rf dist/*"
  16. },
  17. "keywords": [
  18. "rollup",
  19. "plugin",
  20. "md",
  21. "markdown",
  22. "typescript"
  23. ],
  24. "author": "any-tdf",
  25. "funding": "https://stdf.design?fund",
  26. "license": "MIT",
  27. "homepage": "https://github.com/any-tdf/stdf/blob/main/packages/rollup-plugin-md-ts/README.md",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/any-tdf/stdf"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/any-tdf/stdf/issues?q=is:issue+is:open+md"
  34. },
  35. "dependencies": {
  36. "marked": "^15.0.3",
  37. "rollup": "^4.28.1",
  38. "rollup-pluginutils": "^2.8.2"
  39. },
  40. "devDependencies": {
  41. "@eslint/js": "^9.16.0",
  42. "@rollup/plugin-node-resolve": "^15.3.0",
  43. "@rollup/plugin-typescript": "^12.1.1",
  44. "assert": "^2.1.0",
  45. "eslint": "^9.16.0",
  46. "eslint-config-prettier": "^9.1.0",
  47. "fs": "^0.0.1-security",
  48. "globals": "^15.13.0",
  49. "mocha": "^11.0.1",
  50. "rollup-plugin-uglify": "^6.0.4",
  51. "source-map-support": "^0.5.21",
  52. "tslib": "^2.8.1",
  53. "typescript": "^5.7.2",
  54. "typescript-eslint": "^8.18.0"
  55. }
  56. }