-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.72 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
{
"name": "react-native-lossless-trim",
"version": "0.1.1",
"description": "Lossless, ffmpeg-free video trimming for React Native and Expo. Stream-copy passthrough on the platform-native APIs (AVAssetExportSession / MediaMuxer): no re-encode, near-instant, ~zero binary weight.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "jest",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"expo-module": "expo-module"
},
"keywords": [
"react-native",
"expo",
"expo-module",
"video",
"trim",
"video-trim",
"video-editing",
"lossless",
"passthrough",
"no-ffmpeg",
"ffmpeg-free",
"avassetexportsession",
"mediamuxer",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "git+https://github.com/siyegs/react-native-lossless-trim.git"
},
"bugs": {
"url": "https://github.com/siyegs/react-native-lossless-trim/issues"
},
"homepage": "https://github.com/siyegs/react-native-lossless-trim#readme",
"author": "Iyegere Success Karboloo",
"license": "MIT",
"files": [
"build",
"android",
"ios",
"src",
"CHANGELOG.md",
"expo-module.config.json",
"!android/build",
"!android/.gradle",
"!android/.cxx",
"!ios/build",
"!**/__tests__",
"!**/*.test.ts"
],
"devDependencies": {
"@types/react": "~19.1.0",
"expo": "~54.0.36",
"expo-module-scripts": "^5.0.8",
"react": "19.1.0",
"react-native": "0.81.5",
"typescript": "~5.9.2"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}