UNPKG

@nowarajs/totp

Version:

A comprehensive Time-based One-Time Password (TOTP) and HMAC-based One-Time Password (HOTP)

105 lines (104 loc) โ€ข 2.27 kB
{ "name": "@nowarajs/totp", "version": "1.2.0", "author": "NowaraJS", "description": "A comprehensive Time-based One-Time Password (TOTP) and HMAC-based One-Time Password (HOTP)", "type": "module", "license": "MIT", "keywords": [ "bun", "nowarajs", "totp", "hotp" ], "scripts": { "build": "bun builder.ts", "dev": "bun --watch sandbox/index.ts", "docs": "bunx typedoc --tsconfig tsconfig.build.json", "fix-lint": "eslint --fix ./source", "lint": "eslint ./source", "test:integration": "bun test $(find test/integration -name '*.spec.ts')", "test:unit": "bun test --coverage $(find test/unit -name '*.spec.ts')", "test": "bun test --coverage" }, "devDependencies": { "@eslint/js": "^9.39.1", "@nowarajs/error": "^1.3.10", "@stylistic/eslint-plugin": "^5.5.0", "@types/bun": "^1.3.2", "eslint": "^9.39.1", "globals": "^16.5.0", "typescript-eslint": "^8.46.4", "typescript": "^5.9.3" }, "peerDependencies": { "@nowarajs/error": "^1.3.10" }, "exports": { "./enums": "./dist/enums/index.js", "./types": "./dist/types/index.js", "./utils": "./dist/utils/index.js", ".": "./dist/index.js" }, "changelog": { "types": { "feat": { "title": "๐Ÿš€ Enhancements", "semver": "minor" }, "perf": { "title": "โšก Performance", "semver": "patch" }, "fix": { "title": "๐Ÿ”ง Fixes", "semver": "patch" }, "refactor": { "title": "๐Ÿงน Refactors", "semver": "patch" }, "docs": { "title": "๐Ÿ“– Documentation", "semver": "patch" }, "build": { "title": "๐Ÿ“ฆ Build", "semver": "patch" }, "types": { "title": "๐ŸŒŠ Types", "semver": "patch" }, "chore": { "title": "๐Ÿฆ‰ Chore", "semver": "patch" }, "examples": { "title": "๐Ÿ€ Examples", "semver": "patch" }, "test": { "title": "๐Ÿงช Tests", "semver": "patch" }, "style": { "title": "๐ŸŽจ Styles", "semver": "patch" }, "ci": { "title": "๐Ÿค– CI", "semver": "patch" } }, "templates": { "commitMessage": "chore(๐Ÿฆ‰): v{{newVersion}}", "tagMessage": "v{{newVersion}}", "tagBody": "v{{newVersion}}" } }, "repository": { "type": "git", "url": "https://github.com/NowaraJS/totp.git" } }