-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.08 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
47
48
{
"name": "vue3-recaptcha-v2",
"version": "2.1.0",
"description": "reCAPTCHA for Vue3 : CompositionAPI, Types",
"type": "module",
"main": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dongkyuuuu/vue3-recaptcha-v2.git"
},
"author": "DongKyuuuu",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"vue",
"vue3",
"vue-component",
"google-recaptcha",
"recaptcha"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"build": "vite build -c ./vite.config.ts",
"dev": "vite ./playground",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"release": "sh scripts/release.sh"
},
"peerDependencies": {
"vue": "^3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"conventional-changelog-cli": "^4.1.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3",
"vue": "^3.3.4"
},
"packageManager": "[email protected]"
}