codehard-datetime-converter
Version:
## How To install
31 lines (30 loc) • 793 B
JSON
{
"name": "codehard-datetime-converter",
"version": "1.0.2",
"type": "module",
"files": ["dist"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && bun run build:js && bun run build:types",
"build:js": "bun build ./index.ts --outdir dist --target node --format esm",
"build:types": "tsc -p tsconfig.types.json",
"test": "sh test.sh",
"publish": "npm publish --access public"
},
"keywords": ["date", "thai", "buddhist", "formatter", "datetime"],
"license": "MIT",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.9.2"
}
}