@ealch/oddyssey
Version:
A tiny TypeScript library to check if a number is odd or even — your journey into parity begins here.
37 lines • 797 B
JSON
{
"name": "@ealch/oddyssey",
"description": "A tiny TypeScript library to check if a number is odd or even — your journey into parity begins here.",
"keywords": [
"parity",
"odd",
"even",
"typescript",
"utility"
],
"version": "0.1.5",
"author": "ealch",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ealch/oddyssey.git"
},
"type": "module",
"main": "dist/oddyssey.cjs",
"module": "dist/oddyssey.es.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "~5.8.3",
"vite": "^7.0.4"
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.build.json",
"preview": "vite preview"
}
}