{
	"name": "@deanrih/totp-ts",
	"description": "A Time-Based and HMAC-Based One-Time Password Algorithm Implementation",
	"version": "2.0.0",
	"type": "module",
	"license": "MIT",
	"homepage": "https://deanrih.id/projects/self/totp-ts",
	"readme": "./README.md",
	"author": {
		"name": "deanrih",
		"url": "https://github.com/deanrih"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/deanrih/totp-ts"
	},
	"bugs": {
		"url": "https://github.com/deanrih/totp-ts/issues"
	},
	"keywords": [
		"RFC6238",
		"RFC4226",
		"TOTP",
		"HOTP",
		"HMAC",
		"HMAC-Based One-Time Password",
		"Time-Based One-Time Password",
		"HMAC-Based",
		"Time-Based",
		"One-Time Password",
		"2FA"
	],
	"sideEffects": false,
	"main": "./dist/index.js",
	"module": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"import": {
				"types": "./dist/index.d.ts",
				"default": "./dist/index.js"
			}
		},
		"./hotp": {
			"import": {
				"types": "./dist/index.hotp.d.ts",
				"default": "./dist/index.hotp.js"
			}
		},
		"./totp": {
			"import": {
				"types": "./dist/index.totp.d.ts",
				"default": "./dist/index.totp.js"
			}
		},
		"./util": {
			"import": {
				"types": "./dist/index.util.d.ts",
				"default": "./dist/index.util.js"
			}
		},
		"./package.json": "./package.json"
	},
	"publishConfig": {
		"access": "public"
	},
	"scripts": {
		"dev": "bun run --watch ./example/index.example.ts",
		"case:dev": "bun run --watch ./example/case.example.ts",
		"test": "bun test",
		"build": "bunx --bun bunup",
		"release": "bun run test && bun run build && bun publish"
	},
	"devDependencies": {
		"@biomejs/biome": "latest",
		"@types/bun": "latest",
		"bunup": "latest",
		"mitata": "latest",
		"typescript": "latest"
	},
	"peerDependencies": {
		"@deanrih/ts-lib-codec-string": "latest"
	},
	"dependencies": {}
}