{
	"name": "@nowarajs/totp",
	"version": "1.2.4",
	"description": "A comprehensive Time-based One-Time Password (TOTP) and HMAC-based One-Time Password (HOTP)",
	"keywords": [
		"bun",
		"hotp",
		"nowarajs",
		"totp"
	],
	"license": "MIT",
	"author": "NowaraJS",
	"repository": {
		"type": "git",
		"url": "https://github.com/NowaraJS/totp.git"
	},
	"type": "module",
	"exports": {
		"./enums": "./dist/enums/index.js",
		"./types": "./dist/types/index.js",
		"./utils": "./dist/utils/index.js",
		".": "./dist/index.js"
	},
	"scripts": {
		"build": "bun builder.ts",
		"dev": "bun --watch sandbox/index.ts",
		"docs": "bunx typedoc --tsconfig tsconfig.build.json",
		"fmt:check": "oxfmt --check",
		"fmt": "oxfmt",
		"lint:fix": "oxlint --type-aware --type-check --fix ./source",
		"lint:github": "oxlint --type-aware --type-check --format=github ./source",
		"lint": "oxlint --type-aware --type-check  ./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": {
		"@nowarajs/error": "^1.4.3",
		"@types/bun": "^1.3.7",
		"oxfmt": "^0.27.0",
		"oxlint": "^1.42.0",
		"oxlint-tsgolint": "^0.11.3",
		"typescript": "^5.9.3"
	},
	"peerDependencies": {
		"@nowarajs/error": "^1.4.3"
	},
	"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}}"
		}
	}
}
