UNPKG

@anilkumarthakur/vue3-recaptcha

Version:

A Vue 3 plugin for Google reCAPTCHA v2 (checkbox & invisible) and v3 integration

104 lines 2.79 kB
{ "name": "@anilkumarthakur/vue3-recaptcha", "description": "A Vue 3 plugin for Google reCAPTCHA v2 (checkbox & invisible) and v3 integration", "version": "1.0.0", "private": false, "type": "module", "license": "MIT", "author": "Anil Kumar Thakur", "repository": { "type": "git", "url": "https://github.com/anilkumarthakur60/vue3-recaptcha.git" }, "bugs": { "url": "https://github.com/anilkumarthakur60/vue3-recaptcha/issues" }, "homepage": "https://github.com/anilkumarthakur60/vue3-recaptcha#readme", "keywords": [ "recaptcha", "google-recaptcha", "recaptcha-v2", "recaptcha-v3", "vue", "vue3", "vue3-recaptcha", "captcha", "verification", "security", "typescript" ], "main": "./dist/index.cjs", "module": "./dist/index.es.js", "types": "./dist/index.d.ts", "unpkg": "./dist/index.iife.js", "jsdelivr": "./dist/index.iife.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.es.js", "require": "./dist/index.cjs" }, "./package.json": "./package.json" }, "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "engines": { "node": ">=18.0.0", "npm": ">=9.0.0" }, "peerDependencies": { "vue": "^3.4.0" }, "peerDependenciesMeta": { "vue": { "optional": false } }, "devDependencies": { "@rushstack/eslint-patch": "^1.16.1", "@tsconfig/node20": "^20.1.9", "@types/jsdom": "^28.0.1", "@types/node": "^25.5.0", "@vitejs/plugin-vue": "^6.0.5", "@vitejs/plugin-vue-jsx": "^5.1.5", "@vue/eslint-config-prettier": "^10.2.0", "@vue/eslint-config-typescript": "^14.7.0", "@vue/test-utils": "^2.4.6", "@vue/tsconfig": "^0.9.0", "axios": "^1.13.6", "esbuild": "^0.27.4", "eslint": "^10.1.0", "eslint-plugin-vue": "^10.8.0", "jsdom": "^29.0.1", "pinia": "^3.0.4", "prettier": "^3.8.1", "sass-embedded": "^1.98.0", "typescript": "~5.7.3", "vite": "^8.0.2", "vite-plugin-dts": "^4.5.4", "vite-plugin-vue-devtools": "^8.1.1", "vitest": "^4.1.1", "vue": "^3.5.30", "vue-router": "^5.0.4", "vue-tsc": "^3.2.6" }, "scripts": { "dev": "vite --config vite.config.prod.ts", "build": "vue-tsc --noEmit && vite build", "build:prod": "vue-tsc && vite build --config vite.config.prod.ts", "preview": "vite preview", "type-check": "vue-tsc --noEmit", "lint": "eslint src/package --fix", "format": "prettier --write \"src/package/**/*.{vue,ts,tsx,js,jsx,json,css}\"", "test": "vitest run tests", "prepublishOnly": "npm run build", "version": "npm run format && git add -A" } }