UNPKG

nambas

Version:

A simple JS library to format numbers using in-built Intl.NumberFormat

40 lines 874 B
{ "name": "nambas", "version": "0.1.0", "description": "A simple JS library to format numbers using in-built Intl.NumberFormat", "author": "BossBele", "license": "MIT", "repository": "BossBele/nambas", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "keywords": [ "number", "format", "currency", "percentage", "thousands", "decimal", "Intl.NumberFormat" ], "bugs": { "url": "https://github.com/BossBele/nambas/issues" }, "homepage": "https://github.com/BossBele/nambas#readme", "scripts": { "build": "rimraf dist && tsc --build", "prepublishOnly": "yarn build" }, "devDependencies": { "rimraf": "^5.0.0", "typescript": "^5.6.3" }, "exports": { "./format": "./dist/format.js", ".": "./dist/index.js" }, "sideEffects": false }