{"_rev":"4-19eab9621cac5dc1bac6526000e51a6b","time":{"created":"2026-01-30T15:04:09.275Z","modified":"2026-01-30T15:04:09.865Z","1.0.0":"2026-01-30T14:55:58.234Z","1.0.1":"2026-01-30T15:04:09.612Z"},"_id":"@arinova/chat-bot","name":"@arinova/chat-bot","dist-tags":{"latest":"1.0.1"},"versions":{"1.0.1":{"name":"@arinova/chat-bot","version":"1.0.1","description":"This is a chatbot for scrapping ecommerce sites developed by arinova studio","type":"module","license":"MIT","author":{"name":"Arinova Studio"},"main":"dist/index.js","module":"dist/index.js","types":"dist/types/index.d.ts","scripts":{"dev":"vite","build":"vite build && tsc","lint":"eslint .","prepare":"npm run build","preview":"vite preview"},"dependencies":{"@tailwindcss/vite":"^4.1.17","autoprefixer":"^10.4.23","axios":"^1.13.2","lucide-react":"^0.556.0","react":"^19.2.0","react-dom":"^19.2.0","react-router-dom":"^7.10.1","react-slick":"^0.31.0","serve":"^14.2.5","slick-carousel":"^1.8.1","socket.io-client":"^4.8.1","vite-plugin-dts":"^4.5.4"},"devDependencies":{"@eslint/js":"^9.39.1","@tailwindcss/postcss":"^4.1.18","@types/node":"^24.10.1","@types/react":"^19.2.5","@types/react-dom":"^19.2.3","@types/react-slick":"^0.23.13","@vitejs/plugin-react":"^5.1.1","eslint":"^9.39.1","eslint-plugin-react-hooks":"^7.0.1","eslint-plugin-react-refresh":"^0.4.24","globals":"^16.5.0","postcss":"^8.5.6","tailwindcss":"^4.1.18","typescript":"~5.9.3","typescript-eslint":"^8.46.4","vite":"^7.2.4"},"gitHead":"941b61564cbed05fc044ded5438bc814098dbac1","_id":"@arinova/chat-bot@1.0.1","_nodeVersion":"24.7.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-WGY/feFkoPa1AfkrjkOVcXqsOlb1338Cap7tXCsTL6+Q1N1lei9GnnLwLIAmj/TlaMeU+vqwcGHjQ0TZ6RatKw==","shasum":"6e2eb27ec2f2869deaed784b3c73922e6d7ef8d2","tarball":"https://registry.npmjs.org/@arinova/chat-bot/-/chat-bot-1.0.1.tgz","fileCount":25,"unpackedSize":528208,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDkfMO5RNlXyM9M1zQFfLx5Uba9nyVQtzjFFLYqkV8pFAIgVXZWlnMCsjzpKB9EoYotdJuzJrXaF23iLiPpoeuyXOo="}]},"_npmUser":{"name":"arinova.studio","email":"studio.arinova@gmail.com"},"directories":{},"maintainers":[{"name":"arinova.studio","email":"studio.arinova@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/chat-bot_1.0.1_1769785449381_0.6838935223413922"},"_hasShrinkwrap":false}},"maintainers":[{"name":"arinova.studio","email":"studio.arinova@gmail.com"}],"description":"This is a chatbot for scrapping ecommerce sites developed by arinova studio","author":{"name":"Arinova Studio"},"license":"MIT","readme":"# React + TypeScript + Vite\r\n\r\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\r\n\r\nCurrently, two official plugins are available:\r\n\r\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh\r\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\r\n\r\n## React Compiler\r\n\r\nThe React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).\r\n\r\n## Expanding the ESLint configuration\r\n\r\nIf you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:\r\n\r\n```js\r\nexport default defineConfig([\r\n  globalIgnores(['dist']),\r\n  {\r\n    files: ['**/*.{ts,tsx}'],\r\n    extends: [\r\n      // Other configs...\r\n\r\n      // Remove tseslint.configs.recommended and replace with this\r\n      tseslint.configs.recommendedTypeChecked,\r\n      // Alternatively, use this for stricter rules\r\n      tseslint.configs.strictTypeChecked,\r\n      // Optionally, add this for stylistic rules\r\n      tseslint.configs.stylisticTypeChecked,\r\n\r\n      // Other configs...\r\n    ],\r\n    languageOptions: {\r\n      parserOptions: {\r\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\r\n        tsconfigRootDir: import.meta.dirname,\r\n      },\r\n      // other options...\r\n    },\r\n  },\r\n])\r\n```\r\n\r\nYou can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:\r\n\r\n```js\r\n// eslint.config.js\r\nimport reactX from 'eslint-plugin-react-x'\r\nimport reactDom from 'eslint-plugin-react-dom'\r\n\r\nexport default defineConfig([\r\n  globalIgnores(['dist']),\r\n  {\r\n    files: ['**/*.{ts,tsx}'],\r\n    extends: [\r\n      // Other configs...\r\n      // Enable lint rules for React\r\n      reactX.configs['recommended-typescript'],\r\n      // Enable lint rules for React DOM\r\n      reactDom.configs.recommended,\r\n    ],\r\n    languageOptions: {\r\n      parserOptions: {\r\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\r\n        tsconfigRootDir: import.meta.dirname,\r\n      },\r\n      // other options...\r\n    },\r\n  },\r\n])\r\n```\r\n","readmeFilename":"README.md"}