UNPKG

@moveo-ai/web-widget

Version:

Client side library to load the moveo chat widget and connect it with your agent

90 lines (89 loc) 2.55 kB
{ "name": "@moveo-ai/web-widget", "version": "1.14.0", "description": "Client side library to load the moveo chat widget and connect it with your agent", "main": "dist/web-widget.js", "module": "src/web-widget.js", "scripts": { "start": "webpack serve", "prepare": "npm run build", "watch": "webpack --watch", "build": "webpack --config webpack.prod.js", "analyze": "webpack --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json", "test": "jest", "lint": "eslint .", "prettier": "prettier --write \"{src,test}/**/*.{js,json}\"", "autofix": "eslint --fix ." }, "publishConfig": { "access": "public" }, "keywords": [ "bot", "moveo.ai", "agent", "assistant", "chatbot" ], "author": "Moveo.AI (TM)", "license": "MIT", "devDependencies": { "@babel/core": "^7.12.3", "@babel/preset-env": "^7.12.1", "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "babel-eslint": "^10.0.2", "babel-jest": "^26.6.3", "babel-loader": "^8.2.1", "clean-webpack-plugin": "^3.0.0", "css-cleanup-webpack-plugin": "^1.0.2", "css-loader": "^5.0.1", "eslint": "^7.13.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-prettier": "^6.15.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.1.4", "file-saver": "^2.0.5", "html-webpack-plugin": "^5.0.0-alpha.7", "husky": "^4.3.0", "jest": "^26.6.3", "jquery": "^3.5.1", "js-base64": "^3.6.0", "lint-staged": "^10.5.1", "prettier": "^2.1.2", "prettier-webpack-plugin": "^1.2.0", "regenerator-runtime": "^0.13.7", "style-loader": "^2.0.0", "webpack": "^5.6.0", "webpack-bundle-analyzer": "^4.1.0", "webpack-cli": "^4.2.0", "webpack-dev-server": "^3.11.0", "webpack-merge": "^5.4.0" }, "repository": { "url": "https://github.com/moveo-ai/web-widget" }, "homepage": "https://moveo.ai", "jest": { "moduleNameMapper": { "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/resources-mock.js", "\\.(css|less)$": "<rootDir>/src/resources-mock.js" } }, "dependencies": { "anchorme": "^2.1.2", "slick-carousel": "^1.8.1" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "src/**/*.{js,jsx}": [ "prettier --write", "eslint . --fix" ] } }