{
	"name": "verify-hcaptcha",
	"version": "2.1.0",
	"description": "A fully typed library to verify hCaptcha.com tokens submitted by users when solving captcha challenges",
	"license": "MIT",
	"author": {
		"name": "Edoardo Scibona",
		"url": "https://github.com/velut"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/velut/verify-hcaptcha.git"
	},
	"bugs": {
		"url": "https://github.com/velut/verify-hcaptcha/issues"
	},
	"keywords": [
		"hcaptcha",
		"captcha",
		"verify",
		"response",
		"token",
		"user",
		"typescript",
		"types",
		"typed",
		"node",
		"validate",
		"check",
		"siteverify"
	],
	"sideEffects": false,
	"type": "module",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js"
		},
		"./package.json": "./package.json"
	},
	"files": [
		"dist"
	],
	"engines": {
		"node": ">=20"
	},
	"scripts": {
		"check": "tsc --noEmit",
		"build": "tsc --noEmit && tsup",
		"attw": "attw --pack . --ignore-rules cjs-resolves-to-esm",
		"test": "vitest",
		"test:ci": "vitest run --coverage --bail 1",
		"lint": "prettier --check .",
		"format": "prettier --write .",
		"pre-push": "bun install && bun run lint && bun run build && bun run test:ci && bun run attw",
		"release": "np --no-cleanup"
	},
	"dependencies": {
		"zod": "^3.24.2"
	},
	"devDependencies": {
		"@arethetypeswrong/cli": "^0.17.3",
		"@types/bun": "^1.2.2",
		"@vitest/coverage-v8": "^3.0.6",
		"np": "^10.2.0",
		"prettier": "^3.5.1",
		"tsup": "^8.3.6",
		"typescript": "^5.7.3",
		"vitest": "^3.0.6"
	}
}
