-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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": "react-native-content-dialog",
"version": "0.5.0",
"description": "Fluent dialog for display custom content with title and buttons",
"main": "src/Dialog.tsx",
"scripts": {
"types": "tsc --declaration --declarationMap --emitDeclarationOnly --noEmit false --declarationDir dist",
"lint": "eslint .\\src\\",
"prepare": "npm run types && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisglein/react-native-content-dialog.git"
},
"keywords": [
"react",
"react-native"
],
"author": "Chris Glein",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisglein/react-native-content-dialog/issues"
},
"homepage": "https://github.com/chrisglein/react-native-content-dialog#readme",
"dependencies": {},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.14.0",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.22",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-windows": "0.72.4",
"typescript": "^5.2.2"
},
"files": [
"src"
]
}