mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-05 05:36:17 +00:00
122 lines
2.8 KiB
JSON
122 lines
2.8 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": {
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "git clean -dfX",
|
|
"release": "semantic-release",
|
|
"build": "bun run typecheck && bob build",
|
|
"codegen": "nitrogen --logLevel=\"debug\" && bun run build && node post-script.js"
|
|
},
|
|
"keywords": [
|
|
"react-native",
|
|
"react-native-omni"
|
|
],
|
|
"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": {
|
|
"@jamesacarr/eslint-formatter-github-actions": "^0.2.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@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",
|
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
"semantic-release": "^25.0.3",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "*",
|
|
"react-native": "*",
|
|
"react-native-nitro-modules": "*"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@react-native",
|
|
"prettier"
|
|
],
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"warn",
|
|
{
|
|
"quoteProps": "consistent",
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5",
|
|
"useTabs": false
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"eslintIgnore": [
|
|
"node_modules/",
|
|
"lib/"
|
|
],
|
|
"prettier": {
|
|
"quoteProps": "consistent",
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5",
|
|
"useTabs": false,
|
|
"semi": false
|
|
},
|
|
"react-native-builder-bob": {
|
|
"source": "src",
|
|
"output": "lib",
|
|
"targets": [
|
|
"commonjs",
|
|
"module",
|
|
[
|
|
"typescript",
|
|
{
|
|
"project": "tsconfig.json"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
} |