forked from ralali/rematch-navigation-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "@ralali/rematch-navigation-plugin",
"version": "1.0.1",
"description": "React Navigation 5 plugin for Rematch",
"author": "@bobbyecho",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ralali/rematch-navigation-plugin"
},
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"files": [
"lib/",
"src/"
],
"scripts": {
"prepare": "bob build"
},
"devDependencies": {
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/bob": "^0.16.2",
"@react-navigation/native": "^5.7.3",
"@types/react": "^16.9.45",
"@types/react-native": "^0.63.6",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@react-native-community/async-storage": ">=1.11.0",
"@react-navigation/native": ">=5.0.0",
"@rematch/core": ">=1.0.0",
"react": ">=16.7.0-alpha",
"react-native": ">= 0.55.0"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"dependencies": {}
}