-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 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
59
60
61
62
63
{
"name": "@baeckerherz/expo-mapbox-navigation",
"version": "1.0.6",
"description": "Expo module for turn-by-turn navigation (Mapbox Navigation SDK v3) on iOS and Android. Alpha. Single MapboxNavigation component, Expo config plugin.",
"main": "src/index.ts",
"types": "src/index.ts",
"expo": {
"plugin": "./plugin/build/index.js"
},
"scripts": {
"build:plugin": "cd plugin && tsc",
"build": "tsc && yarn build:plugin",
"clean": "rm -rf build plugin/build",
"prepublishOnly": "yarn check",
"lint": "eslint src/",
"check": "yarn build:plugin && node scripts/check-release.mjs",
"check:full": "yarn lint && yarn check",
"preversion": "yarn check",
"test:integration": "node scripts/integration.mjs"
},
"keywords": [
"expo",
"react-native",
"mapbox",
"navigation",
"turn-by-turn",
"driving",
"mapbox-navigation-sdk",
"mapbox-navigation-v3",
"expo-module",
"alpha",
"mapbox-navigation",
"react-native-navigation",
"directions",
"routing"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/baeckerherz/expo-mapbox-navigation"
},
"files": [
"src/",
"ios/",
"android/",
"plugin/build/",
"plugin/src/",
"app.plugin.js",
"expo-module.config.json",
"README.md"
],
"peerDependencies": {
"expo": ">=51.0.0",
"react": ">=18.0.0",
"react-native": ">=0.74.0"
},
"devDependencies": {
"expo-modules-core": "^2.5.0",
"expo-module-scripts": "^3.5.2",
"typescript": "^5.0.0",
"@expo/config-plugins": "^8.0.0"
}
}