ivxl
Version:
convert numbers to roman numerals and vice versa
30 lines (29 loc) • 894 B
JSON
{
"name": "ivxl",
"version": "0.1.0",
"description": "convert numbers to roman numerals and vice versa",
"type": "module",
"files": ["dist/*"],
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm --dts --sourcemap --no-splitting --clean",
"build-min": "bun build ./src/index.ts --outdir ./dist --minify --entry-naming '[dir]/[name].min.[ext]'",
"clean": "rm -rf dist node_modules",
"test": "bun test --coverage"
},
"keywords": ["roman", "numeral", "roman-numeral"],
"author": "Randy Schneck <i@rasch.co>",
"license": "0BSD",
"repository": {
"type": "fossil",
"url": "https://chiselapp.com/user/rasch/repository/ivxl"
},
"devDependencies": {
"bun-types": "^1.0.1",
"prettier": "^3.0.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}