-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
53 lines (53 loc) · 1.29 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
49
50
51
52
53
{
"name": "vue-recaptcha-v3",
"version": "2.0.1",
"keywords": [
"captcha",
"recaptcha",
"recaptcha-v3",
"vue",
"vuejs"
],
"bugs": {
"url": "https://github.com/AurityLab/vue-recaptcha-v3/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AurityLab/vue-recaptcha-v3"
},
"license": "Apache-2.0",
"author": "AurityLab <[email protected]>",
"files": [
"/dist",
"/README.md",
"/LICENSE"
],
"main": "dist/ReCaptchaVuePlugin.js",
"types": "dist/ReCaptchaVuePlugin.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.ts\" \"demo/**/*.ts\"",
"demo:webpack:server": "webpack serve --config demo/webpack.config.js --progress"
},
"dependencies": {
"recaptcha-v3": "^1.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"vue": "^3.2.40",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"vue": "^3.2.40"
}
}