Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Example/
.idea
.circleci
.gradle
.github
ExampleApp/
**/build/
**/__tests__/
docs/
.git*
*.xcworkspace
*.xcodeproj

29 changes: 23 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"name": "react-native-twilio-video-webrtc",
"name": "@twilio/video-react-native-sdk",
"repository": {
"type": "git",
"url": "https://github.com/blackuy/react-native-twilio-video-webrtc.git"
"url": "https://github.com/twilio/react-native-twilio-video-webrtc.git"
},
"homepage": "https://github.com/blackuy/react-native-twilio-video-webrtc",
"version": "3.3.0-rc1",
"homepage": "https://github.com/twilio/react-native-twilio-video-webrtc",
"version": "3.3.0",
"description": "Twilio Video WebRTC for React Native.",
"main": "index.js",
"react-native": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
Expand All @@ -22,11 +24,26 @@
"keywords": [
"react-native"
],
"author": "Gaston Morixe <gaston@gastonmorixe.com>",
"authors": [
"Donal Toomey <dtoomey@twilio.com>"
],
"contributors": [
"Martin Fernandez <fmartin91@gmail.com>"
"Gaston Morixe <gaston@gastonmorixe.com>",
"Martin Fernandez <fmartin91@gmail.com>",
"Zhani Muceku <zhani.muceku@testdevlab.com>",
"Ģirts Rudzišs <grudziss@twilio.com>"
],
"license": "MIT",
"files": [
"ios",
"android",
"src/",
"index.js",
"index.d.ts",
"react-native-twilio-video-webrtc.podspec",
"plugin/build",
"app.plugin.js"
],
"devDependencies": {
"@babel/eslint-parser": "^7.28.0",
"del": "^6.0.0",
Expand Down
5 changes: 2 additions & 3 deletions react-native-twilio-video-webrtc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ Pod::Spec.new do |s|
s.name = 'react-native-twilio-video-webrtc'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.author = package['author']
s.authors = package['authors']
s.homepage = package['homepage']
s.source = { git: 'https://github.com/blackuy/react-native-twilio-video-web-rtc', tag: s.version }
s.source = { git: 'https://github.com/twilio/react-native-twilio-video-webrtc.git', tag: s.version }

s.requires_arc = true
s.platform = :ios, '10.0'
Expand Down