UNPKG

voicebot-react-native-expo

Version:

This is a voicebot-react-native package of Kipps AI voice bot for React Native Expo

206 lines (205 loc) 4.92 kB
{ "name": "@livekit/react-native", "version": "2.4.3", "description": "LiveKit for React Native", "main": "lib/commonjs/index", "module": "lib/module/index", "types": "lib/typescript/src/index.d.ts", "react-native": "src/index", "source": "src/index", "files": [ "src", "lib", "android", "ios", "cpp", "livekit-react-native.podspec", "!lib/typescript/example", "!lib/typescript/ci", "!android/build", "!android/.gradle", "!android/.idea", "!ios/build", "!example", "!ci", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__" ], "repository": "https://github.com/livekit/client-sdk-react-native", "author": "LiveKit <dl@livekit.io> (https://livekit.io/)", "license": "Apache-2.0", "bugs": { "url": "https://github.com/livekit/client-sdk-react-native/issues" }, "homepage": "https://github.com/livekit/client-sdk-react-native#readme", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "keywords": [ "react-native", "ios", "android" ], "dependencies": { "@livekit/components-react": "^2.0.6", "array.prototype.at": "^1.1.1", "livekit-client": "^2.4.2", "loglevel": "^1.8.0", "promise.allsettled": "^1.0.5", "react-native-url-polyfill": "^1.3.0", "well-known-symbols": "^4.0.0" }, "devDependencies": { "@babel/core": "^7.20.0", "@babel/preset-env": "^7.20.0", "@babel/runtime": "^7.20.0", "@commitlint/config-conventional": "^16.2.1", "@livekit/react-native-webrtc": "^125.0.5", "@react-native/babel-preset": "0.74.84", "@react-native/eslint-config": "0.74.84", "@react-native/metro-config": "0.74.84", "@react-native/typescript-config": "0.74.84", "@release-it/conventional-changelog": "^4.2.0", "@types/fastestsmallesttextencoderdecoder": "^1.0.0", "@types/react": "^18.2.6", "babel-jest": "^29.6.3", "commitlint": "^16.2.1", "eslint": "^8.23.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-ft-flow": "^2.0.3", "eslint-plugin-prettier": "^4.2.1", "husky": "^7.0.4", "jest": "^29.6.3", "pod-install": "^0.2.2", "prettier": "2.8.8", "react": "18.2.0", "react-native": "0.74.2", "react-native-builder-bob": "^0.18.2", "release-it": "^14.2.2", "typedoc": "^0.25.13", "typescript": "5.0.4" }, "peerDependencies": { "@livekit/react-native-webrtc": "^125.0.5", "react": "*", "react-native": "*" }, "scripts": { "test": "jest", "build-docs": "typedoc --tsconfig tsconfig.build.json", "typescript": "tsc --noemit -p tsconfig.build.json", "lint": "eslint \"**/*.{js,ts,tsx}\"", "prepare": "bob build", "release": "release-it", "example": "yarn --cwd example", "pods": "cd example && pod-install --verbose", "bootstrap": "yarn example && yarn && yarn pods" }, "engines": { "node": ">=18" }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/ci", "<rootDir>/example", "<rootDir>/lib/" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ], "rules": { "type-enum": [ 2, "always", [ "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "revert", "style", "test", "example" ] ] } }, "release-it": { "hooks": { "before:init": [ "yarn lint", "yarn test --passWithNoTests", "yarn typescript" ], "after:bump": [ "yarn pods", "yarn build-docs" ], "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}." }, "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "preset": "angular", "ignoreRecommendedBump": true } } }, "eslintConfig": { "root": true, "extends": [ "@react-native", "prettier" ], "rules": { "prettier/prettier": [ "error", { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false } ] } }, "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" } ] ] } }