@mustafakarali/react-native-audio-stream
Version:
React Native Audio Stream - High-performance audio streaming for React Native
154 lines (153 loc) • 3.76 kB
JSON
{
"name": "@mustafakarali/react-native-audio-stream",
"version": "1.10.21",
"description": "React Native Audio Stream - High-performance audio streaming for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"README.md",
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-audio-stream.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/test-*",
"!**/*-test.js",
"!**/*-example.js",
"!**/examples/**"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "node scripts/bootstrap.js",
"clean": "del-cli lib android/build ios/build example/android/build example/ios/build"
},
"keywords": [
"react-native",
"ios",
"android",
"audio",
"streaming",
"player",
"real-time",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mustafakarali/react-native-audio-stream.git"
},
"author": "Mustafa Karalı <mustafa@birharika.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mustafakarali/react-native-audio-stream/issues"
},
"homepage": "https://github.com/mustafakarali/react-native-audio-stream#readme",
"funding": {
"type": "individual",
"url": "https://coff.ee/mustafakarali"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.2.0",
"@release-it/conventional-changelog": "^7.0.2",
"@types/jest": "^29.5.5",
"@types/node": "^20.10.0",
"@types/react": "^18.2.45",
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"del-cli": "^5.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"pod-install": "^0.1.39",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-native": "^0.72.0",
"react-native-builder-bob": "^0.23.2",
"release-it": "^16.2.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-native": ">=0.72.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"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
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"codegenConfig": {
"name": "RNAudioStreamSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.audiostream"
}
}
}