Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

71 regels
1.5 KiB

  1. {
  2. "name": "@modal-sh/numerica-core",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=12"
  10. },
  11. "license": "UNLICENSED",
  12. "keywords": [
  13. "number",
  14. "language",
  15. "conversion",
  16. "name",
  17. "words"
  18. ],
  19. "devDependencies": {
  20. "@types/node": "^18.14.1",
  21. "eslint": "^8.35.0",
  22. "eslint-config-lxsmnsyc": "^0.5.0",
  23. "pridepack": "2.4.4",
  24. "tslib": "^2.5.0",
  25. "typescript": "^4.9.5",
  26. "vitest": "^0.28.1"
  27. },
  28. "scripts": {
  29. "prepublishOnly": "pridepack clean && pridepack build",
  30. "build": "pridepack build",
  31. "type-check": "pridepack check",
  32. "lint": "pridepack lint",
  33. "clean": "pridepack clean",
  34. "watch": "pridepack watch",
  35. "start": "pridepack start",
  36. "dev": "pridepack dev",
  37. "test": "vitest"
  38. },
  39. "private": true,
  40. "description": "Core library.",
  41. "repository": {
  42. "url": "",
  43. "type": "git"
  44. },
  45. "homepage": "",
  46. "bugs": {
  47. "url": ""
  48. },
  49. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  50. "publishConfig": {
  51. "access": "restricted"
  52. },
  53. "types": "./dist/types/index.d.ts",
  54. "main": "./dist/cjs/production/index.js",
  55. "module": "./dist/esm/production/index.js",
  56. "exports": {
  57. ".": {
  58. "development": {
  59. "require": "./dist/cjs/development/index.js",
  60. "import": "./dist/esm/development/index.js"
  61. },
  62. "require": "./dist/cjs/production/index.js",
  63. "import": "./dist/esm/production/index.js",
  64. "types": "./dist/types/index.d.ts"
  65. }
  66. },
  67. "typesVersions": {
  68. "*": {}
  69. }
  70. }