-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "vue3-recaptcha2",
"version": "1.8.0",
"description": "Vue v3 component for Google reCAPTCHA v2",
"main": "./dist/vue3-recaptcha2.umd.js",
"browser": "./dist/vue3-recaptcha2.umd.js",
"unpkg": "./dist/vue3-recaptcha2.umd.js",
"jsdelivr": "./dist/vue3-recaptcha2.umd.js",
"module": "./dist/vue3-recaptcha2.es.js",
"typings": "./dist_types/index.d.ts",
"exports": {
".": {
"import": "./dist/vue3-recaptcha2.es.js",
"require": "./dist/vue3-recaptcha2.umd.js"
}
},
"sideEffects": false,
"author": "Dmitry Sergienko (https://www.codefirst.co.uk)",
"homepage": "https://github.com/bbonch/vue3-recaptcha2",
"license": "ISC",
"scripts": {
"prepublish": "npm run build",
"typecheck": "vue-tsc --noEmit",
"build": "vue-tsc --declaration --emitDeclarationOnly && vite build",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@vitejs/plugin-vue": "^2.3.2",
"@vue/compiler-sfc": "^3.2.33",
"@vue/test-utils": "^2.0.0-rc.21",
"jsdom": "^19.0.0",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vitest": "^0.12.2",
"vue": "^3.2.33",
"vue-tsc": "^0.34.11"
},
"keywords": [
"vue",
"component",
"vue-component",
"google-recaptcha",
"recaptcha"
]
}