package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "bignumber.js",
  3. "description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
  4. "version": "9.3.0",
  5. "keywords": [
  6. "arbitrary",
  7. "precision",
  8. "arithmetic",
  9. "big",
  10. "number",
  11. "decimal",
  12. "float",
  13. "biginteger",
  14. "bigdecimal",
  15. "bignumber",
  16. "bigint",
  17. "bignum"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/MikeMcl/bignumber.js.git"
  22. },
  23. "main": "bignumber",
  24. "module": "bignumber.mjs",
  25. "browser": "bignumber.js",
  26. "types": "bignumber.d.ts",
  27. "exports": {
  28. ".": {
  29. "import": {
  30. "types": "./bignumber.d.mts",
  31. "default": "./bignumber.mjs"
  32. },
  33. "require": {
  34. "types": "./bignumber.d.ts",
  35. "default": "./bignumber.js"
  36. },
  37. "browser": {
  38. "types": "./bignumber.d.ts",
  39. "default": "./bignumber.js"
  40. },
  41. "default": {
  42. "types": "./bignumber.d.ts",
  43. "default": "./bignumber.js"
  44. }
  45. },
  46. "./package.json": "./package.json"
  47. },
  48. "author": {
  49. "name": "Michael Mclaughlin",
  50. "email": "M8ch88l@gmail.com"
  51. },
  52. "engines": {
  53. "node": "*"
  54. },
  55. "license": "MIT",
  56. "scripts": {
  57. "test": "node test/test"
  58. },
  59. "dependencies": {}
  60. }