UNPKG

react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

95 lines (94 loc) 2.66 kB
{ "name": "react-chatbotify", "homepage": "https://react-chatbotify.com", "keywords": [ "react", "chat", "chatbot", "conversational-bot", "conversational-ui", "frontend-library", "react-chatbotify" ], "files": [ "./dist" ], "version": "2.2.0", "description": "A modern React library for creating flexible and extensible chatbots.", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "scripts": { "lint": "eslint --fix \"**/*.{ts,tsx}\"", "build": "tsc && vite build && node ./scripts/post-build.js", "prepublishOnly": "tsc && vite build && node ./scripts/post-build.js", "prepack": "tsc && vite build && node ./scripts/post-build.js", "start": "vite serve", "prepare": "husky install", "unit:test": "jest __tests__/", "unit:test:single": "jest --findRelatedTests", "unit:test:watch": "jest --watch __tests__/", "unit:test:coverage": "jest --coverage __tests__/", "int:test:open": "cypress open", "int:test": "cypress run", "validate:ssr": "node ./ssr/ssr-validate.js" }, "author": "tjtanjin", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/react-chatbotify/react-chatbotify" }, "peerDependencies": { "react": ">=16.14.0", "react-dom": ">=16.14.0" }, "devDependencies": { "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.2.0", "@types/dom-speech-recognition": "^0.0.4", "@types/jest": "^29.5.14", "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@typescript-eslint/eslint-plugin": "^8.24.0", "@vitejs/plugin-react": "^4.3.4", "cypress": "^13.14.2", "cypress-file-upload": "^5.0.8", "eslint": "^9.20.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-hooks": "^5.1.0", "husky": "^9.1.7", "identity-obj-proxy": "^3.0.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "react": "^18.3.1", "react-dom": "^18.3.1", "ts-jest": "^29.2.5", "typescript": "^5.7.3", "vite": "^6.3.4", "vite-plugin-eslint2": "^5.0.3", "vite-plugin-svgr": "^4.3.0" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } }