mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-04 21:26:48 +00:00
106 lines
2.5 KiB
JSON
106 lines
2.5 KiB
JSON
{
|
|
"name": "react-native-omni",
|
|
"version": "0.0.0-development",
|
|
"description": "video player using vlc and videojs",
|
|
"main": "./lib/commonjs/index.js",
|
|
"module": "./lib/module/index.js",
|
|
"types": "./lib/typescript/src/index.d.ts",
|
|
"react-native": "src/index",
|
|
"source": "src/index",
|
|
"scripts": {
|
|
"dev": "cd example && bun start",
|
|
"android": " cd example && bunx react-native run-android --no-packager --port 8082",
|
|
"web": "cd example && bun web",
|
|
"typecheck": "tsc --noEmit && tsc -p plugin/tsconfig.json --noEmit",
|
|
"build:plugin": "tsc -p plugin/tsconfig.json",
|
|
"build": "bun run typecheck && bob build && bun run build:plugin",
|
|
"prepare": "bun run build",
|
|
"codegen": "nitrogen --logLevel=\"debug\" && node post-script.js",
|
|
"release": "semantic-release"
|
|
},
|
|
"keywords": [
|
|
"react-native",
|
|
"react-native-omni",
|
|
"vlc",
|
|
"videojs"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"react-native.config.js",
|
|
"lib",
|
|
"nitrogen",
|
|
"cpp",
|
|
"nitro.json",
|
|
"android/build.gradle",
|
|
"android/fix-prefab.gradle",
|
|
"android/gradle.properties",
|
|
"android/CMakeLists.txt",
|
|
"android/src",
|
|
"ios/**/*.h",
|
|
"ios/**/*.m",
|
|
"ios/**/*.mm",
|
|
"ios/**/*.cpp",
|
|
"ios/**/*.swift",
|
|
"app.plugin.js",
|
|
"plugin/build",
|
|
"*.podspec",
|
|
"README.md"
|
|
],
|
|
"workspaces": [
|
|
"example"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/zoriya/react-native-omni.git"
|
|
},
|
|
"author": "Zoe Roux",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/zoriya/react-native-omni/issues",
|
|
"homepage": "https://github.com/zoriya/react-native-omni#readme",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"dependencies": {
|
|
"@expo/config-plugins": "^57.0.3",
|
|
"@videojs/react": "10.0.0-beta.25",
|
|
"jassub": "^2.5.7",
|
|
"libpgs": "^0.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.5.3",
|
|
"@types/chromecast-caf-sender": "^1.0.11",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/react": "19.2.17",
|
|
"nitrogen": "0.36.1",
|
|
"react": "19.2.7",
|
|
"react-native": "0.86.0",
|
|
"react-native-builder-bob": "^0.43.0",
|
|
"react-native-nitro-modules": "0.36.1",
|
|
"semantic-release": "^25.0.7",
|
|
"typescript": "^7.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=19.0.0",
|
|
"react-native": ">=0.86.0",
|
|
"react-native-nitro-modules": ">=0.36.0"
|
|
},
|
|
"react-native-builder-bob": {
|
|
"source": "src",
|
|
"output": "lib",
|
|
"targets": [
|
|
"commonjs",
|
|
"module",
|
|
[
|
|
"typescript",
|
|
{
|
|
"project": "tsconfig.json"
|
|
}
|
|
]
|
|
]
|
|
},
|
|
"patchedDependencies": {
|
|
"jassub@2.5.7": "patches/jassub@2.5.7.patch"
|
|
}
|
|
}
|