-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
79 lines (79 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-native-paper-toast",
"version": "2.1.0",
"description": "A toast implementation for React Native Paper",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"types": "dist/typescript/src/index.d.ts",
"files": [
"src",
"dist",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"/dist",
"package.json",
"LICENSE"
],
"repository": "https://github.com/kuasha420/react-native-paper-toast",
"keywords": [
"react-native-paper",
"react-native",
"toast"
],
"author": "Arafat Zahan",
"license": "MIT",
"peerDependencies": {
"react": ">=18.2",
"react-native": ">=0.72",
"react-native-paper": ">=5",
"react-native-safe-area-context": ">=4.6",
"react-native-vector-icons": ">=10"
},
"scripts": {
"bootstrap": "yarn example && yarn",
"example": "yarn --cwd example",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "rm -rf ./dist/* && bob build",
"prepublishOnly": "yarn"
},
"devDependencies": {
"@types/react": "~17.0.21",
"@types/react-native-vector-icons": "^6.4.18",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"expo": "~49.0.15",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-builder-bob": "^0.23.2",
"react-native-paper": "^5.11.3",
"react-native-safe-area-context": "^4.6.3",
"react-native-vector-icons": "10.0.1",
"typescript": "^5.0.2"
},
"resolutions": {
"@types/react": "17.0.21"
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}