-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "next-hcaptcha",
"version": "1.4.3",
"description": "Guard your Next.js API routes with HCaptcha",
"author": {
"name": "Igor Klepacki",
"email": "[email protected]",
"url": "https://neg4n.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neg4n/next-hcaptcha"
},
"keywords": [
"nextjs",
"nextjs-plugin",
"hcaptcha",
"recaptcha",
"captcha",
"react-hcaptcha",
"react-recaptcha"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/neg4n/next-hcaptcha/issues"
},
"homepage": "https://github.com/neg4n/next-hcaptcha/#readme",
"source": "src/index.ts",
"main": "./lib/next-hcaptcha.cjs",
"module": "./lib/next-hcaptcha.module.js",
"unpkg": "./lib/next-hcaptcha.umd.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf lib",
"build": "microbundle",
"build:watch": "microbundle watch"
},
"devDependencies": {
"@types/node": "^16.4.13",
"microbundle": "^0.13.3",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"peerDependencies": {
"next": ">=9.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"prettier": {
"printWidth": 90,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}