-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "tiny-react-captcha",
"version": "1.0.7",
"description": "A tiny captcha component for React",
"license": "MIT",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"author": {
"name": "Wenzel Frick",
"url": "https://wefrick.com",
"email": "hello@wefrick.com"
},
"repository": {
"type": "git",
"url": "https://github.com/wenzf/tiny-react-captcha"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.19.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.34.2",
"globals": "^15.3.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"keywords": [
"react",
"captcha",
"remix"
],
"externals": {
"react": "react"
}
}