-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "@fe-eule/react-keyboard-avoiding-view",
"version": "1.0.12",
"private": false,
"description": "This component is a component that automatically adjusts the view so that the fixed element is not covered by the keyboard when the keyboard appears on iOS devices.",
"keywords": [
"keyboard",
"ios",
"react"
],
"homepage": "https://github.com/fe-eule/react-keyboard-avoiding-view",
"bugs": {
"url": "https://github.com/fe-eule/react-keyboard-avoiding-view/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fe-eule/react-keyboard-avoiding-view"
},
"license": "MIT",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"source": "src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx"
},
"dependencies": {
"@react-hookz/web": "^24.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"microbundle": "^0.15.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": "^20"
},
"publishConfig": {
"main": "dist/index.js",
"source": "src/index.ts"
}
}