UNPKG

@talkjs/react-native

Version:

Official TalkJS SDK for React Native

170 lines 4.22 kB
{ "name": "@talkjs/react-native", "version": "0.16.1", "description": "Official TalkJS SDK for React Native", "license": "BSD-3-Clause", "main": "lib/module/index", "module": "lib/module/index", "types": "lib/typescript/src/index.d.ts", "source": "src/index", "files": [ "lib", "!lib/typescript/example", "!android/build", "!ios/build", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "!expo" ], "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", "react": "cd node_modules/react && yarn link && cd ../../example && yarn link react", "bootstrap": "yarn && yarn react && yarn example && yarn pods" }, "keywords": [ "chat", "chat api", "chat sdk", "react-native chat", "react-native chat api", "messaging", "talk", "talkjs", "talkjs react-native", "real-time messaging", "real-time chat", "direct messaging", "user-to-user chat", "private messaging", "group chat", "react-native" ], "bugs": { "url": "https://talkjs.com/?chat" }, "homepage": "https://talkjs.com", "devDependencies": { "@commitlint/config-conventional": "^18.6.0", "@notifee/react-native": "^9.1.8", "@react-native-async-storage/async-storage": "^2.2.0", "@react-native-community/push-notification-ios": "^1.12.0", "@react-native-firebase/app": "^23.7.0", "@react-native-firebase/messaging": "^23.7.0", "@react-native/eslint-config": "^0.83.0", "@react-native/metro-config": "^0.83.0", "@react-native/typescript-config": "^0.83.0", "@release-it/conventional-changelog": "^6.0.0", "@types/react": "^19.2.0", "commitlint": "^19.3.0", "expo-notifications": "^0.32.15", "expo-task-manager": "^14.0.9", "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.4", "husky": "^9.1.7", "jest": "^29.6.1", "pod-install": "^1.0.9", "prettier": "^3.7.4", "react": "19.2.0", "react-native": "^0.83.0", "react-native-builder-bob": "^0.40.12", "react-native-codegen": "^0.71.6", "react-native-webview": "^13.16.0", "release-it": "^16.0.0", "typescript": "^5.8.3" }, "peerDependencies": { "@notifee/react-native": "^9.1.8", "@react-native-async-storage/async-storage": "^2.2.0", "@react-native-community/push-notification-ios": "^1.12.0", "@react-native-firebase/app": "^23.7.0", "@react-native-firebase/messaging": "^23.7.0", "react-native": ">=0.70", "react-native-webview": "^13.16.0" }, "engines": { "node": ">=20" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "yarn lint && yarn typescript" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "preset": "angular" } } }, "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": [ "module", [ "typescript", { "project": "tsconfig.build.json" } ] ] }, "dependencies": { "sha1": "^1.1.1", "talkjs": "^0.26.0" } }