-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "next-recaptcha-v3",
"version": "1.5.2",
"description": "🤖 Next.js hook to add Google ReCaptcha to your application",
"license": "MIT",
"author": "Roman Zhuravlov",
"repository": "https://github.com/snelsi/next-recaptcha-v3",
"homepage": "https://github.com/snelsi/next-recaptcha-v3",
"keywords": [
"recaptcha",
"recaptcha-v3",
"google-recaptcha-v3",
"next",
"next.js",
"react",
"hook"
],
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"rollup": "rollup -c",
"prettier": "prettier --write .",
"lint": "eslint",
"lint-fix": "eslint --fix",
"fix": "npm run prettier && npm run lint-fix",
"pre-commit": "npm run lint && lint-staged",
"prepublishOnly": "npm run rollup"
},
"peerDependencies": {
"next": "^13 || ^14 || ^15",
"react": "^18 || ^19"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"next": "^15.1.0",
"prettier": "3.4.2",
"pretty-quick": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.28.1",
"rollup-plugin-node-externals": "^7.1.3",
"rollup-plugin-preserve-directives": "^0.4.0",
"typescript": "^5.7.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pretty-quick --staged"
]
}
}