react-native-youtube-bridge
Version:
🎥 Easy-to-use YouTube player for React Native with cross-platform support
125 lines (124 loc) • 3.06 kB
JSON
{
"name": "react-native-youtube-bridge",
"version": "0.3.1",
"description": "🎥 Easy-to-use YouTube player for React Native with cross-platform support",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
"exports": {
".": {
"source": "./src/index.tsx",
"types": "./lib/typescript/src/index.d.ts",
"default": "./lib/module/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"android",
"ios",
"cpp",
"*.podspec",
"react-native.config.js",
"!ios/build",
"!android/build",
"!android/gradle",
"!android/gradlew",
"!android/gradlew.bat",
"!android/local.properties",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"example": "bun --cwd example",
"test": "jest",
"typecheck": "tsc",
"lint": "biome check --write .",
"clean": "del-cli lib",
"prepare": "bob build",
"release": "changeset version && changeset publish"
},
"keywords": [
"react-native",
"ios",
"android",
"youtube",
"react-native-youtube",
"react-native-youtube-bridge",
"youtube-iframe-api",
"react-native-youtube-iframe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-bridges/react-native-youtube-bridge.git"
},
"author": "saseungmin <dbd02169@naver.com> (https://github.com/saseungmin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-bridges/react-native-youtube-bridge/issues"
},
"homepage": "https://github.com/react-native-bridges/react-native-youtube-bridge#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.4",
"@commitlint/config-conventional": "^19.6.0",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/babel-preset": "0.78.2",
"@types/jest": "^29.5.5",
"@types/react": "^19.0.12",
"commitlint": "^19.6.1",
"del-cli": "^5.1.0",
"jest": "^29.7.0",
"react": "19.0.0",
"react-native": "0.79.3",
"react-native-builder-bob": "^0.40.12",
"react-native-webview": "^13.15.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-webview": ">=11.0.0"
},
"packageManager": "bun@1.2.15",
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"module",
{
"esm": true,
"configFile": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"create-react-native-library": {
"languages": "js",
"type": "library",
"version": "0.50.3"
}
}