forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "react-router-native",
"version": "6.25.1",
"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 <hello@remix.run>",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"react-router": "workspace:*"
},
"devDependencies": {
"@types/react-test-renderer": "^18.0.0",
"react": "^18.2.0",
"react-native": "^0.69.5",
"react-router-native": "workspace:*",
"react-test-renderer": "^18.2.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.44"
},
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"engines": {
"node": ">=14.0.0"
}
}