UNPKG

@ilihub/decimal-to-hexadecimal

Version:

Decimal to hexadecimal converter TypeScript library

71 lines 1.55 kB
{ "name": "@ilihub/decimal-to-hexadecimal", "version": "1.0.7", "publishConfig": { "access": "public" }, "description": "Decimal to hexadecimal converter TypeScript library", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "license": "MIT", "homepage": "https://code.ilihub.tech", "funding": "https://opencollective.com/ilihub", "repository": { "type": "git", "url": "https://github.com/ilihub/npm.git" }, "bugs": { "url": "https://github.com/ilihub/npm/issues", "email": "contact@ilihub.tech" }, "author": { "name": "ilihub", "email": "contact@ilihub.tech", "url": "https://github.com/ilihub" }, "keywords": [ "ilihub", "code", "number system", "decimal", "hexadecimal", "decimal to hexadecimal", "tools", "typescript", "functions", "utils" ], "tsup": { "treeshake": true, "splitting": true, "entry": [ "src/index.ts" ], "format": [ "cjs" ], "dts": true, "minify": true, "clean": true }, "devDependencies": { "@types/jest": "^29.5.5", "@types/node": "^20.8.6", "jest": "^29.7.0", "ts-jest": "^29.1.1", "tsup": "^7.2.0", "typescript": "^5.2.2", "eslint-config-custom": "0.0.0", "tsconfig": "0.0.0" }, "scripts": { "lint": "eslint \"**/*.ts*\"", "build": "tsup", "dev": "tsup --watch", "check-types": "tsc --noEmit", "test": "jest --config jestconfig.json --maxWorkers=50% --passWithNoTests" } }