package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "mathml2omml",
  3. "version": "0.5.0",
  4. "description": "a MathML to OMML converter ",
  5. "main": "./dist/index.js",
  6. "type": "module",
  7. "types": "./dist/index.d.ts",
  8. "exports": {
  9. "types": "./dist/index.d.ts",
  10. "import": "./dist/index.js",
  11. "require": "./dist/index.cjs"
  12. },
  13. "scripts": {
  14. "build": "rollup -c && node -e \"require('fs').copyFileSync('src/index.d.ts','dist/index.d.ts')\""
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/fiduswriter/mathml2omml.git"
  19. },
  20. "keywords": [
  21. "mml",
  22. "mathml",
  23. "omml"
  24. ],
  25. "author": "Johannes Wilm",
  26. "license": "LGPL-3.0-or-later",
  27. "bugs": {
  28. "url": "https://github.com/fiduswriter/mathml2omml/issues"
  29. },
  30. "homepage": "https://github.com/fiduswriter/mathml2omml#readme",
  31. "files": [
  32. "dist"
  33. ],
  34. "devDependencies": {
  35. "@biomejs/biome": "1.9.4",
  36. "@rollup/plugin-node-resolve": "^16.0.1",
  37. "entities": "^6.0.0",
  38. "husky": "^9.1.7",
  39. "jest": "^29.7.0",
  40. "lint-staged": "^15.5.0",
  41. "rollup": "^4.35.0",
  42. "xml-formatter": "^3.6.4"
  43. }
  44. }