Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

72 righe
1.6 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. "@vitest/coverage-v8": "^0.34.1",
  22. "eslint": "^8.35.0",
  23. "eslint-config-lxsmnsyc": "^0.5.0",
  24. "pridepack": "2.4.4",
  25. "tslib": "^2.5.0",
  26. "typescript": "^4.9.5",
  27. "vitest": "^0.34.1"
  28. },
  29. "scripts": {
  30. "prepublishOnly": "pridepack clean && pridepack build",
  31. "build": "pridepack build",
  32. "type-check": "pridepack check",
  33. "lint": "pridepack lint",
  34. "clean": "pridepack clean",
  35. "watch": "pridepack watch",
  36. "start": "pridepack start",
  37. "dev": "pridepack dev",
  38. "test": "vitest"
  39. },
  40. "private": true,
  41. "description": "Core library.",
  42. "repository": {
  43. "url": "",
  44. "type": "git"
  45. },
  46. "homepage": "",
  47. "bugs": {
  48. "url": ""
  49. },
  50. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  51. "publishConfig": {
  52. "access": "restricted"
  53. },
  54. "types": "./dist/types/index.d.ts",
  55. "main": "./dist/cjs/production/index.js",
  56. "module": "./dist/esm/production/index.js",
  57. "exports": {
  58. ".": {
  59. "development": {
  60. "require": "./dist/cjs/development/index.js",
  61. "import": "./dist/esm/development/index.js"
  62. },
  63. "require": "./dist/cjs/production/index.js",
  64. "import": "./dist/esm/production/index.js",
  65. "types": "./dist/types/index.d.ts"
  66. }
  67. },
  68. "typesVersions": {
  69. "*": {}
  70. }
  71. }