-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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": "facaptcha",
"version": "1.2.1",
"description": "React CAPTCHA, but it's fun",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"prepublishOnly": "yarn build",
"eslint": "eslint src/**"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.10.0"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.11.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.4.5"
},
"externals": {
"react": "react"
},
"files": [
"/lib"
],
"author": "Dylan Blair <[email protected]>",
"homepage": "https://dylandbl.github.io/faCAPTCHA",
"repository": {
"type": "git",
"url": "git+https://github.com/dylandbl/faCAPTCHA"
},
"bugs": {
"url": "https://github.com/dylandbl/faCAPTCHA/issues"
},
"keywords": [
"react",
"react-component",
"captcha",
"react-captcha",
"scambaiting",
"scam-baiting"
]
}