-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "@irfanwani/react-native-dialog",
"version": "0.0.1",
"description": "This is a typescript package for react native apps to display a dialog box",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irfanwani/react-native-dialog.git"
},
"keywords": [
"react-native",
"react-native-dialog",
"popup",
"react-native-dialog-box",
"react",
"rn-dialog"
],
"author": "Irfanwani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/irfanwani/react-native-dialog/issues"
},
"homepage": "https://github.com/irfanwani/react-native-dialog#readme",
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-native": "^0.69",
"react": "^18.0.0",
"react-native": "^0.69.6",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"react-native-animatable": "^1.3.3"
}
}