UNPKG

expo-bing-chat

Version:

Expo client for the unofficial Bing Chat API.

82 lines 1.82 kB
{ "name": "expo-bing-chat", "version": "0.2.7", "description": "Expo client for the unofficial Bing Chat API.", "author": "Alexander Pataridze <s.pataridze@gmail.com>", "repository": "alexandrius/expo-bing-chat", "license": "MIT", "type": "module", "source": "./src/index.ts", "main": "./build/index.js", "types": "./build/index.d.ts", "exports": { ".": { "import": "./build/index.js", "types": "./build/index.d.ts", "default": "./build/index.js" } }, "files": [ "build" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "clean": "del build", "prebuild": "run-s clean", "predev": "run-s clean", "pretest": "run-s build", "docs": "typedoc", "prepare": "husky install", "pre-commit": "lint-staged", "test": "run-p test:*", "test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check" }, "dependencies": { "expo-crypto": "^12.2.1" }, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^4.0.0", "@types/node": "^18.11.9", "@types/uuid": "^9.0.0", "@types/ws": "^8.5.4", "del-cli": "^5.0.0", "dotenv-safe": "^8.2.0", "husky": "^8.0.2", "lint-staged": "^13.0.3", "npm-run-all": "^4.1.5", "ora": "^6.1.2", "prettier": "^2.8.0", "tsup": "^6.5.0", "tsx": "^3.12.1", "typedoc": "^0.23.21", "typedoc-plugin-markdown": "^3.13.6", "typescript": "^4.9.3" }, "peerDependencies": { "react-native": ">=0.70.0" }, "lint-staged": { "*.{ts,tsx}": [ "prettier --write" ] }, "keywords": [ "openai", "bing", "chat", "search", "sydney", "gpt", "gpt-3", "gpt3", "gpt4", "chatbot", "machine learning", "conversation", "conversational", "ai", "ml", "bot" ] }