package.json 827 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "js-base64",
  3. "version": "3.7.7",
  4. "description": "Yet another Base64 transcoder in pure-JS",
  5. "main": "base64.js",
  6. "module": "base64.mjs",
  7. "types": "base64.d.ts",
  8. "sideEffects": false,
  9. "files": [
  10. "base64.js",
  11. "base64.mjs",
  12. "base64.d.ts",
  13. "base64.d.mts"
  14. ],
  15. "exports": {
  16. ".": {
  17. "import": {
  18. "types": "./base64.d.mts",
  19. "default": "./base64.mjs"
  20. },
  21. "require": {
  22. "types": "./base64.d.ts",
  23. "default": "./base64.js"
  24. }
  25. },
  26. "./package.json": "./package.json"
  27. },
  28. "scripts": {
  29. "test": "make clean && make test"
  30. },
  31. "devDependencies": {
  32. "@types/node": "^20.11.5",
  33. "mocha": "^10.2.0",
  34. "typescript": "^5.3.3"
  35. },
  36. "repository": "git+https://github.com/dankogai/js-base64.git",
  37. "keywords": [
  38. "base64",
  39. "binary"
  40. ],
  41. "author": "Dan Kogai",
  42. "license": "BSD-3-Clause"
  43. }