forked from heineiuo/react-navigation-switch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.95 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.95 KB
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
{
"name": "react-navigation-switch",
"version": "1.0.6",
"description": "`createSwitchNavigator` for react-navigation >= 5",
"main": "node_modules/expo/AppEntry.js",
"types": "lib/typescript/index.d.ts",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"files": [
"src",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/heineiuo/react-navigation-switch.git"
},
"scripts": {
"build:commonjs": "babel src --out-dir lib/commonjs --extensions '.ts,.tsx' --source-maps",
"build:module": "tsc src/*.tsx --module es2015 --target es5 --jsx 'react-native' --sourceMap --skipLibCheck --allowSyntheticDefaultImports --outDir lib/module --moduleResolution node",
"build:typescript": "tsc src/*.tsx --declaration --emitDeclarationOnly --jsx 'react-native' --skipLibCheck --allowSyntheticDefaultImports --outDir lib/typescript",
"prepublishOnly": "node scripts/prepublishOnly.js",
"postpublish": "node scripts/postpublish.js",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/heineiuo/react-navigation-switch/issues"
},
"peerDependencies": {
"@react-navigation/native": ">=5"
},
"homepage": "https://github.com/heineiuo/react-navigation-switch#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.12.9",
"@react-navigation/native": ">=5",
"@types/react": "~17.0.21",
"@types/react-dom": "^17.0.11",
"@types/react-native": "~0.64.12",
"expo": "~44.0.0",
"expo-status-bar": "~1.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-web": "0.17.1",
"typescript": "~4.3.5"
},
"dependencies": {
"react-native-safe-area-context": ">=3.4.0"
}
}