-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "expo-sony-camera",
"version": "0.2.1",
"description": "Expo and React Native Sony camera module with Android USB UVC streaming, USB PTP2, ScalarWebAPI live view, remote shutter, and JPEG capture",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"android/build.gradle",
"android/libs",
"android/src",
"build",
"docs",
"ios",
"src",
"app.plugin.js",
"expo-module.config.json",
"CHANGELOG.md",
"LICENSE",
"README.md",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"build": "node internal/module_scripts/build.js",
"build:watch": "node internal/module_scripts/build.js --watch",
"clean": "node internal/module_scripts/clean.js",
"lint": "eslint src/",
"format:check": "prettier --check src example app.plugin.js",
"test": "node internal/module_scripts/test.js",
"test:watch": "node internal/module_scripts/test.js --watch",
"sync-version": "node internal/module_scripts/sync-version.js",
"sync-version:check": "node internal/module_scripts/sync-version.js --check",
"prepublishOnly": "npm run verify:uvc-artifacts && npm run sync-version && npm run build && npm run lint && npm test",
"prepare": "node internal/module_scripts/sync-version.js && node internal/module_scripts/prepare.js",
"open:ios": "node internal/module_scripts/open-ios.js",
"open:android": "node internal/module_scripts/open-android.js",
"build:uvc-aar": "bash scripts/build-uvc-aar.sh",
"verify:uvc-artifacts": "bash scripts/verify-uvc-artifacts.sh"
},
"keywords": [
"react-native",
"expo",
"expo-module",
"expo-sony-camera",
"sony-camera",
"sony-camera-control",
"sony-remote-camera",
"sony-camera-remote",
"sony-alpha",
"sony-a7iii",
"sony-a7-iii",
"sony-a6700",
"ilce-7m3",
"ilce-6700",
"react-native-sony-camera",
"mobile-camera",
"camera-integration",
"camera-control",
"remote-shutter",
"tethered-shooting",
"camera-live-view",
"live-view",
"jpeg-live-view",
"usb-camera",
"wifi-camera",
"wifi-direct-camera",
"android-camera",
"ios-camera",
"ptp",
"ptp2",
"ptp3",
"ptp-ip",
"ptpip",
"scalarwebapi",
"sony-camera-ptp",
"camera-remote-control",
"remote-capture",
"camera-shutter",
"imagecapturecore"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jongan69/expo-sony-camera.git"
},
"bugs": {
"url": "https://github.com/jongan69/expo-sony-camera/issues"
},
"author": "Jonathan Gan <jonathang132298@gmail.com> (https://github.com/jongan69)",
"license": "MIT",
"homepage": "https://github.com/jongan69/expo-sony-camera#readme",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./build/*": "./build/*"
},
"sideEffects": false,
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.26.0",
"@types/jest": "^29.2.1",
"@types/react": "~19.1.1",
"babel-preset-expo": "~57.0.4",
"eslint": "~9.39.4",
"eslint-config-universe": "^15.0.3",
"expo": "^57.0.7",
"jest": "^29.7.0",
"jest-expo": "~57.0.2",
"prettier": "^3.0.0",
"react-native": "0.86.0",
"typescript": "^5.9.2"
},
"jest": {
"preset": "jest-expo",
"roots": [
"<rootDir>/src"
]
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}