-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "@bearbytes/magellan",
"version": "3.0.1",
"description": "Simplified navigation for React Native with improved Typescript support, based on react-navigation",
"keywords": [
"typescript",
"react native",
"react-native",
"navigation",
"react-navigation",
"screens"
],
"main": "src/index.ts",
"files": [
"src"
],
"scripts": {
"prepare": "tsc",
"patch": "npm version patch && npm publish --access public",
"local": "npm pack && cd ../tripmemory && npm i ../magellan/bearbytes-magellan-3.0.1.tgz && rm ../magellan/bearbytes-magellan-3.0.1.tgz"
},
"author": "[email protected]",
"license": "ISC",
"repository": "https://github.com/bearbytes/magellan",
"dependencies": {
"@react-navigation/core": "next",
"@react-navigation/native": "next",
"@react-navigation/stack": "next",
"utility-types": "^3.10.0"
},
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@types/react": "^16.9.14",
"react": "^16.12.0",
"typescript": "^3.7.2"
}
}