Files
react-native-omni/package.json

87 lines
1.9 KiB
JSON

{
"name": "react-native-omni",
"version": "0.1.0",
"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",
"typecheck": "tsc --noEmit",
"build": "bun run typecheck && bob build",
"codegen": "nitrogen --logLevel=\"debug\" && node post-script.js"
},
"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",
"*.podspec",
"README.md"
],
"workspaces": [
"example"
],
"repository": "https://github.com/zoeroux/react-native-omni.git",
"author": "Zoe Roux",
"license": "MIT",
"bugs": "https://github.com/zoeroux/react-native-omni/issues",
"homepage": "https://github.com/zoeroux/react-native-omni#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/jest": "^29.5.12",
"@types/react": "19.2.0",
"nitrogen": "0.35.3",
"react": "19.2.3",
"react-native": "0.84.1",
"react-native-builder-bob": "^0.40.18",
"react-native-nitro-modules": "0.35.3",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-nitro-modules": "*"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
}
}