forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 911 Bytes
/
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
{
"name": "react-router-native",
"version": "6.4.0",
"description": "Declarative routing for React Native applications",
"keywords": [
"react",
"router",
"route",
"routing",
"history",
"link"
],
"repository": {
"type": "git",
"url": "https://github.com/remix-run/react-router",
"directory": "packages/react-router-native"
},
"license": "MIT",
"author": "Remix Software <[email protected]>",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@ungap/url-search-params": "^0.1.4",
"react-router": "6.4.0"
},
"devDependencies": {
"react": "^18.2.0",
"react-native": "^0.61.4"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.44"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"engines": {
"node": ">=14"
}
}