-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "react-native-input-sheet",
"version": "1.1.0",
"description": "A simple react native input component , allows user inputs something from the sheet come from bottom, just like actionSheet",
"main": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.tsx --dts --clean --format esm --legacy-output --sourcemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BooYeu/react-native-input-sheet.git"
},
"keywords": [
"react-native",
"react-native-input-sheet"
],
"author": "liulirui",
"license": "ISC",
"bugs": {
"url": "https://github.com/BooYeu/react-native-input-sheet/issues"
},
"homepage": "https://github.com/BooYeu/react-native-input-sheet#readme",
"dependencies": {
"react-hooks-extension": ">=1.0.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "8.22",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"prettier": "^2.8.3",
"react": ">=16.8.0",
"react-native": ">=0.62",
"tsup": "^6.5.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}