-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) 路 2.46 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) 路 2.46 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-native-vision-camera-location",
"version": "5.2.0",
"description": "Location tagging plugin for react-native-vision-camera for photo EXIF and video metadata.",
"main": "lib/index",
"module": "lib/index",
"types": "lib/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"react-native.config.js",
"lib",
"nitrogen",
"android/build.gradle",
"android/gradle.properties",
"android/fix-prefab.gradle",
"android/CMakeLists.txt",
"android/src",
"ios/**/*.h",
"ios/**/*.m",
"ios/**/*.mm",
"ios/**/*.cpp",
"ios/**/*.swift",
"nitro.json",
"*.podspec",
"README.md"
],
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "rm -rf android/build node_modules/**/android/build lib",
"build": "tsc",
"typescript": "tsc",
"specs": "tsc --noEmit false && nitrogen",
"release": "release-it"
},
"keywords": [
"react-native",
"camera",
"react-native-camera",
"vision-camera",
"location",
"gps",
"geotagging",
"geotag",
"exif",
"metadata",
"photo-metadata",
"video-metadata",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrousavy/react-native-vision-camera.git"
},
"author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrousavy/react-native-vision-camera/issues"
},
"homepage": "https://visioncamera.margelo.com/api/react-native-vision-camera-location",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/react": "19.2.15",
"nitrogen": "0.36.5",
"react": "19.2.3",
"react-native": "0.85.3",
"react-native-nitro-modules": "0.36.5",
"react-native-vision-camera": "*",
"typescript": "6.0.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*",
"react-native-vision-camera": "*"
},
"release-it": {
"npm": {
"publish": true
},
"git": false,
"github": {
"release": false
},
"hooks": {
"before:init": "bun typecheck",
"after:bump": "bun run build"
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}