react-native-tpstreams 0.1.7 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,203 +1,203 @@
1
- {
2
- "name": "react-native-tpstreams",
3
- "version": "0.1.7",
4
- "description": "Video Component for TPStreams",
5
- "source": "./src/index.tsx",
6
- "main": "./lib/commonjs/index.js",
7
- "module": "./lib/module/index.js",
8
- "exports": {
9
- ".": {
10
- "import": {
11
- "types": "./lib/typescript/module/src/index.d.ts",
12
- "default": "./lib/module/index.js"
13
- },
14
- "require": {
15
- "types": "./lib/typescript/commonjs/src/index.d.ts",
16
- "default": "./lib/commonjs/index.js"
17
- }
18
- }
19
- },
20
- "files": [
21
- "src",
22
- "lib",
23
- "android",
24
- "ios",
25
- "cpp",
26
- "*.podspec",
27
- "react-native.config.js",
28
- "!ios/build",
29
- "!android/build",
30
- "!android/gradle",
31
- "!android/gradlew",
32
- "!android/gradlew.bat",
33
- "!android/local.properties",
34
- "!**/__tests__",
35
- "!**/__fixtures__",
36
- "!**/__mocks__",
37
- "!**/.*"
38
- ],
39
- "scripts": {
40
- "example": "yarn workspace react-native-tpstreams-example",
41
- "test": "jest",
42
- "typecheck": "tsc",
43
- "lint": "eslint \"**/*.{js,ts,tsx}\"",
44
- "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
45
- "prepare": "bob build",
46
- "release": "release-it"
47
- },
48
- "keywords": [
49
- "react-native",
50
- "ios",
51
- "android"
52
- ],
53
- "repository": {
54
- "type": "git",
55
- "url": "git+https://github.com/testpress/react-native-player-sdk.git"
56
- },
57
- "author": "Bharath <bharath@testpress.in> (https://github.com/bharathwaaj)",
58
- "license": "MIT",
59
- "bugs": {
60
- "url": "https://github.com/testpress/react-native-player-sdk/issues"
61
- },
62
- "homepage": "https://github.com/testpress/react-native-player-sdk#readme",
63
- "publishConfig": {
64
- "registry": "https://registry.npmjs.org/"
65
- },
66
- "devDependencies": {
67
- "@commitlint/config-conventional": "^17.0.2",
68
- "@evilmartians/lefthook": "^1.5.0",
69
- "@react-native-community/cli": "15.0.1",
70
- "@react-native/eslint-config": "^0.73.1",
71
- "@release-it/conventional-changelog": "^9.0.2",
72
- "@types/jest": "^29.5.5",
73
- "@types/react": "^18.2.44",
74
- "commitlint": "^17.0.2",
75
- "del-cli": "^5.1.0",
76
- "eslint": "^8.51.0",
77
- "eslint-config-prettier": "^9.0.0",
78
- "eslint-plugin-prettier": "^5.0.1",
79
- "jest": "^29.7.0",
80
- "prettier": "^3.0.3",
81
- "react": "19.0.0",
82
- "react-native": "0.78.0",
83
- "react-native-builder-bob": "^0.37.0",
84
- "release-it": "^17.10.0",
85
- "turbo": "^1.10.7",
86
- "typescript": "^5.2.2"
87
- },
88
- "resolutions": {
89
- "@types/react": "^18.2.44"
90
- },
91
- "peerDependencies": {
92
- "react": "*",
93
- "react-native": "*"
94
- },
95
- "workspaces": [
96
- "example"
97
- ],
98
- "packageManager": "yarn@3.6.1",
99
- "jest": {
100
- "preset": "react-native",
101
- "modulePathIgnorePatterns": [
102
- "<rootDir>/example/node_modules",
103
- "<rootDir>/lib/"
104
- ]
105
- },
106
- "commitlint": {
107
- "extends": [
108
- "@commitlint/config-conventional"
109
- ]
110
- },
111
- "release-it": {
112
- "git": {
113
- "commitMessage": "chore: release ${version}",
114
- "tagName": "v${version}"
115
- },
116
- "npm": {
117
- "publish": true
118
- },
119
- "github": {
120
- "release": true
121
- },
122
- "plugins": {
123
- "@release-it/conventional-changelog": {
124
- "preset": "angular"
125
- }
126
- }
127
- },
128
- "eslintConfig": {
129
- "root": true,
130
- "extends": [
131
- "@react-native",
132
- "prettier"
133
- ],
134
- "rules": {
135
- "react/react-in-jsx-scope": "off",
136
- "prettier/prettier": [
137
- "error",
138
- {
139
- "quoteProps": "consistent",
140
- "singleQuote": true,
141
- "tabWidth": 2,
142
- "trailingComma": "es5",
143
- "useTabs": false
144
- }
145
- ]
146
- }
147
- },
148
- "eslintIgnore": [
149
- "node_modules/",
150
- "lib/"
151
- ],
152
- "prettier": {
153
- "quoteProps": "consistent",
154
- "singleQuote": true,
155
- "tabWidth": 2,
156
- "trailingComma": "es5",
157
- "useTabs": false
158
- },
159
- "react-native-builder-bob": {
160
- "source": "src",
161
- "output": "lib",
162
- "targets": [
163
- "codegen",
164
- [
165
- "commonjs",
166
- {
167
- "esm": true
168
- }
169
- ],
170
- [
171
- "module",
172
- {
173
- "esm": true
174
- }
175
- ],
176
- [
177
- "typescript",
178
- {
179
- "project": "tsconfig.build.json",
180
- "esm": true
181
- }
182
- ]
183
- ]
184
- },
185
- "codegenConfig": {
186
- "name": "RNTpstreamsSpec",
187
- "type": "modules",
188
- "jsSrcsDir": "src",
189
- "outputDir": {
190
- "ios": "ios/generated",
191
- "android": "android/generated"
192
- },
193
- "android": {
194
- "javaPackageName": "com.tpstreams"
195
- },
196
- "includesGeneratedCode": true
197
- },
198
- "create-react-native-library": {
199
- "type": "turbo-module",
200
- "languages": "kotlin-objc",
201
- "version": "0.48.3"
202
- }
203
- }
1
+ {
2
+ "name": "react-native-tpstreams",
3
+ "version": "0.1.9",
4
+ "description": "Video Component for TPStreams",
5
+ "source": "./src/index.tsx",
6
+ "main": "./lib/commonjs/index.js",
7
+ "module": "./lib/module/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "types": "./lib/typescript/module/src/index.d.ts",
12
+ "default": "./lib/module/index.js"
13
+ },
14
+ "require": {
15
+ "types": "./lib/typescript/commonjs/src/index.d.ts",
16
+ "default": "./lib/commonjs/index.js"
17
+ }
18
+ }
19
+ },
20
+ "files": [
21
+ "src",
22
+ "lib",
23
+ "android",
24
+ "ios",
25
+ "cpp",
26
+ "*.podspec",
27
+ "react-native.config.js",
28
+ "!ios/build",
29
+ "!android/build",
30
+ "!android/gradle",
31
+ "!android/gradlew",
32
+ "!android/gradlew.bat",
33
+ "!android/local.properties",
34
+ "!**/__tests__",
35
+ "!**/__fixtures__",
36
+ "!**/__mocks__",
37
+ "!**/.*"
38
+ ],
39
+ "scripts": {
40
+ "example": "yarn workspace react-native-tpstreams-example",
41
+ "test": "jest",
42
+ "typecheck": "tsc",
43
+ "lint": "eslint \"**/*.{js,ts,tsx}\"",
44
+ "clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
45
+ "prepare": "bob build",
46
+ "release": "release-it"
47
+ },
48
+ "keywords": [
49
+ "react-native",
50
+ "ios",
51
+ "android"
52
+ ],
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/testpress/react-native-player-sdk.git"
56
+ },
57
+ "author": "Bharath <bharath@testpress.in> (https://github.com/bharathwaaj)",
58
+ "license": "MIT",
59
+ "bugs": {
60
+ "url": "https://github.com/testpress/react-native-player-sdk/issues"
61
+ },
62
+ "homepage": "https://github.com/testpress/react-native-player-sdk#readme",
63
+ "publishConfig": {
64
+ "registry": "https://registry.npmjs.org/"
65
+ },
66
+ "devDependencies": {
67
+ "@commitlint/config-conventional": "^17.0.2",
68
+ "@evilmartians/lefthook": "^1.5.0",
69
+ "@react-native-community/cli": "15.0.1",
70
+ "@react-native/eslint-config": "^0.73.1",
71
+ "@release-it/conventional-changelog": "^9.0.2",
72
+ "@types/jest": "^29.5.5",
73
+ "@types/react": "^18.2.44",
74
+ "commitlint": "^17.0.2",
75
+ "del-cli": "^5.1.0",
76
+ "eslint": "^8.51.0",
77
+ "eslint-config-prettier": "^9.0.0",
78
+ "eslint-plugin-prettier": "^5.0.1",
79
+ "jest": "^29.7.0",
80
+ "prettier": "^3.0.3",
81
+ "react": "19.0.0",
82
+ "react-native": "0.78.0",
83
+ "react-native-builder-bob": "^0.37.0",
84
+ "release-it": "^17.10.0",
85
+ "turbo": "^1.10.7",
86
+ "typescript": "^5.2.2"
87
+ },
88
+ "resolutions": {
89
+ "@types/react": "^18.2.44"
90
+ },
91
+ "peerDependencies": {
92
+ "react": "*",
93
+ "react-native": "*"
94
+ },
95
+ "workspaces": [
96
+ "example"
97
+ ],
98
+ "packageManager": "yarn@3.6.1",
99
+ "jest": {
100
+ "preset": "react-native",
101
+ "modulePathIgnorePatterns": [
102
+ "<rootDir>/example/node_modules",
103
+ "<rootDir>/lib/"
104
+ ]
105
+ },
106
+ "commitlint": {
107
+ "extends": [
108
+ "@commitlint/config-conventional"
109
+ ]
110
+ },
111
+ "release-it": {
112
+ "git": {
113
+ "commitMessage": "chore: release ${version}",
114
+ "tagName": "v${version}"
115
+ },
116
+ "npm": {
117
+ "publish": true
118
+ },
119
+ "github": {
120
+ "release": true
121
+ },
122
+ "plugins": {
123
+ "@release-it/conventional-changelog": {
124
+ "preset": "angular"
125
+ }
126
+ }
127
+ },
128
+ "eslintConfig": {
129
+ "root": true,
130
+ "extends": [
131
+ "@react-native",
132
+ "prettier"
133
+ ],
134
+ "rules": {
135
+ "react/react-in-jsx-scope": "off",
136
+ "prettier/prettier": [
137
+ "error",
138
+ {
139
+ "quoteProps": "consistent",
140
+ "singleQuote": true,
141
+ "tabWidth": 2,
142
+ "trailingComma": "es5",
143
+ "useTabs": false
144
+ }
145
+ ]
146
+ }
147
+ },
148
+ "eslintIgnore": [
149
+ "node_modules/",
150
+ "lib/"
151
+ ],
152
+ "prettier": {
153
+ "quoteProps": "consistent",
154
+ "singleQuote": true,
155
+ "tabWidth": 2,
156
+ "trailingComma": "es5",
157
+ "useTabs": false
158
+ },
159
+ "react-native-builder-bob": {
160
+ "source": "src",
161
+ "output": "lib",
162
+ "targets": [
163
+ "codegen",
164
+ [
165
+ "commonjs",
166
+ {
167
+ "esm": true
168
+ }
169
+ ],
170
+ [
171
+ "module",
172
+ {
173
+ "esm": true
174
+ }
175
+ ],
176
+ [
177
+ "typescript",
178
+ {
179
+ "project": "tsconfig.build.json",
180
+ "esm": true
181
+ }
182
+ ]
183
+ ]
184
+ },
185
+ "codegenConfig": {
186
+ "name": "RNTpstreamsSpec",
187
+ "type": "modules",
188
+ "jsSrcsDir": "src",
189
+ "outputDir": {
190
+ "ios": "ios/generated",
191
+ "android": "android/generated"
192
+ },
193
+ "android": {
194
+ "javaPackageName": "com.tpstreams"
195
+ },
196
+ "includesGeneratedCode": true
197
+ },
198
+ "create-react-native-library": {
199
+ "type": "turbo-module",
200
+ "languages": "kotlin-objc",
201
+ "version": "0.48.3"
202
+ }
203
+ }
@@ -1,4 +0,0 @@
1
- aarFormatVersion=1.0
2
- aarMetadataVersion=1.0
3
- minCompileSdk=1
4
- minAndroidGradlePluginVersion=1.0.0