react-native-voice-stream
Version:
A real-time voice streaming as base-64 string chunks
125 lines (123 loc) • 2.96 kB
JSON
{
"name": "react-native-voice-stream",
"version": "0.0.2",
"description": "A real-time voice streaming as base-64 string chunks",
"summary": "A real-time voice streaming as base-64 string chunks",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"ios",
"android",
"react-native-voice-stream.podspec",
"!cpp",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!example"
],
"scripts": {
"typecheck": "tsc",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build",
"prepare": "bob build",
"release": "release-it",
"dev:install-rn": "yarn add --dev react-native@0.72.9",
"dev:clean": "yarn remove react-native"
},
"keywords": [
"react-native",
"microphone",
"voice",
"stream",
"base-64",
"native-module",
"ios",
"android"
],
"repository": "https://github.com/dietdoctor/react-native-voice-stream",
"author": "Omal Perera <omalperera8@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dietdoctor/react-native-voice-stream/issues"
},
"homepage": "https://github.com/dietdoctor/react-native-voice-stream#readme",
"authors": [
"Omal Perera <omalperera8@gmail.com>"
],
"devDependencies": {
"@babel/runtime": "^7.27.6",
"@react-native-community/bob": "^0.17.1",
"@types/react": "^19.1.6",
"del-cli": "^6.0.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.2",
"react": "18.2.0",
"react-native": "0.72.1",
"release-it": "^15.6.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"packageManager": "yarn@1.22.22",
"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-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
],
"exclude": "**/{__tests__,__fixtures__,__mocks__}/**"
}
}