UNPKG

chatbot-test-william

Version:

A flexible and customizable React chat component that supports context-aware conversations and document processing

101 lines (100 loc) 2.67 kB
{ "name": "chatbot-test-william", "version": "1.0.16", "description": "A flexible and customizable React chat component that supports context-aware conversations and document processing", "private": false, "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "style": "dist/style.css", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./style.css": "./dist/style.css" }, "files": [ "dist", "build", "README.md" ], "keywords": [ "react", "chatbot", "ai", "chat-component", "document-processing", "umd" ], "license": "MIT", "peerDependencies": { "react": ">=18.2.0", "react-dom": ">=18.2.0" }, "dependencies": { "@testing-library/jest-dom": "^5.14.1", "@testing-library/react": "^13.0.0", "@testing-library/user-event": "^13.2.1", "@types/jest": "^27.0.1", "@types/node": "^16.7.13", "@types/react": "^18.2.61", "@types/react-dom": "^18.2.19", "lint-staged": "^15.4.3", "react-icons": "^5.0.1", "react-scripts": "5.0.1", "react-toastify": "^10.0.4", "web-vitals": "^2.1.0" }, "scripts": { "start": "react-scripts start", "clean": "rm -rf build dist", "test": "react-scripts test", "eject": "react-scripts eject", "build:js": "tsup", "build:types": "tsc", "build:app": "webpack --config webpack.config.js --mode=production", "build:umd": "webpack --config webpack.umd.config.js", "build:all": "npm run clean && npm run build:js && npm run build:app && npm run build:umd", "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "devDependencies": { "@babel/core": "^7.24.0", "@babel/preset-env": "^7.24.0", "@babel/preset-react": "^7.23.3", "@swc/core": "^1.11.31", "css-loader": "^6.11.0", "husky": "^8.0.3", "mini-css-extract-plugin": "^2.9.2", "prettier": "^3.2.5", "style-loader": "^3.3.4", "ts-loader": "^9.5.1", "tsup": "^8.5.0", "typescript": "^4.9.5", "webpack": "^5.90.3", "webpack-cli": "^5.1.4" }, "lint-staged": { "src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [ "prettier --write" ] } }