UNPKG

sinhala-datetime

Version:

Sinhala date and time formatter with TypeScript support

61 lines 1.58 kB
{ "name": "sinhala-datetime", "version": "1.0.7", "description": "Sinhala date and time formatter with TypeScript support", "type": "module", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "exports": { ".": { "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts" }, "./format.js": { "require": "./dist/cjs/libs/format.js", "import": "./dist/esm/libs/format.js" }, "./constants.js": { "require": "./dist/cjs/libs/constants.js", "import": "./dist/esm/libs/constants.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/LakshanRukantha/sinhala-datetime.git" }, "keywords": [ "sinhala", "datetime", "formatter", "npm", "typescript" ], "author": "Lakshan Rukantha", "license": "MIT", "bugs": { "url": "https://github.com/LakshanRukantha/sinhala-datetime/issues" }, "homepage": "https://github.com/LakshanRukantha/sinhala-datetime#readme", "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^20.6.0", "jest": "^30.0.4", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "tsc-alias": "^1.8.16", "typescript": "^5.4.0" }, "scripts": { "build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json", "build:cjs": "tsc -p tsconfig.cjs.json", "build": "pnpm run build:esm && pnpm run build:cjs", "test": "jest" } }