1 | {
|
2 | "name": "@react-navigation/native",
|
3 | "description": "React Native integration for React Navigation",
|
4 | "version": "7.0.14",
|
5 | "keywords": [
|
6 | "react-native",
|
7 | "react-navigation",
|
8 | "ios",
|
9 | "android"
|
10 | ],
|
11 | "license": "MIT",
|
12 | "repository": {
|
13 | "type": "git",
|
14 | "url": "https://github.com/react-navigation/react-navigation.git",
|
15 | "directory": "packages/native"
|
16 | },
|
17 | "bugs": {
|
18 | "url": "https://github.com/react-navigation/react-navigation/issues"
|
19 | },
|
20 | "homepage": "https://reactnavigation.org",
|
21 | "source": "./src/index.tsx",
|
22 | "main": "./lib/commonjs/index.js",
|
23 | "module": "./lib/module/index.js",
|
24 | "types": "./lib/typescript/commonjs/src/index.d.ts",
|
25 | "exports": {
|
26 | ".": {
|
27 | "import": {
|
28 | "types": "./lib/typescript/module/src/index.d.ts",
|
29 | "default": "./lib/module/index.js"
|
30 | },
|
31 | "require": {
|
32 | "types": "./lib/typescript/commonjs/src/index.d.ts",
|
33 | "default": "./lib/commonjs/index.js"
|
34 | }
|
35 | }
|
36 | },
|
37 | "files": [
|
38 | "src",
|
39 | "lib",
|
40 | "!**/__tests__"
|
41 | ],
|
42 | "sideEffects": false,
|
43 | "publishConfig": {
|
44 | "access": "public"
|
45 | },
|
46 | "scripts": {
|
47 | "prepack": "bob build",
|
48 | "clean": "del lib"
|
49 | },
|
50 | "dependencies": {
|
51 | "@react-navigation/core": "^7.3.1",
|
52 | "escape-string-regexp": "^4.0.0",
|
53 | "fast-deep-equal": "^3.1.3",
|
54 | "nanoid": "3.3.8",
|
55 | "use-latest-callback": "^0.2.1"
|
56 | },
|
57 | "devDependencies": {
|
58 | "@jest/globals": "^29.7.0",
|
59 | "@testing-library/react-native": "^12.8.1",
|
60 | "@types/react": "~18.3.12",
|
61 | "@types/react-dom": "~18.3.1",
|
62 | "del-cli": "^5.1.0",
|
63 | "react": "18.3.1",
|
64 | "react-dom": "18.3.1",
|
65 | "react-native": "0.76.2",
|
66 | "react-native-builder-bob": "^0.33.2",
|
67 | "typescript": "^5.5.2"
|
68 | },
|
69 | "peerDependencies": {
|
70 | "react": ">= 18.2.0",
|
71 | "react-native": "*"
|
72 | },
|
73 | "react-native-builder-bob": {
|
74 | "source": "src",
|
75 | "output": "lib",
|
76 | "targets": [
|
77 | [
|
78 | "commonjs",
|
79 | {
|
80 | "esm": true
|
81 | }
|
82 | ],
|
83 | [
|
84 | "module",
|
85 | {
|
86 | "esm": true
|
87 | }
|
88 | ],
|
89 | [
|
90 | "typescript",
|
91 | {
|
92 | "project": "tsconfig.build.json",
|
93 | "esm": true
|
94 | }
|
95 | ]
|
96 | ]
|
97 | },
|
98 | "gitHead": "85c53f6593a6894018be936e6a47654634e5e4b4"
|
99 | }
|