UNPKG

custom-chatbot-app

Version:

This is my custom chatbot package for BuyersEdge

52 lines (51 loc) 1.46 kB
{ "name": "custom-chatbot-app", "version": "1.0.35", "description": "This is my custom chatbot package for BuyersEdge", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "scripts": { "build": "yarn build:esm && yarn build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", "prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"", "lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"", "prepare": "npm run build", "prepublishOnly": "npm run lint", "test": "echo \"Error: no test specified\" && exit 1" }, "peerDependencies": { "react": ">=16" }, "files": [ "dist", "LICENSE", "README.md" ], "keywords": [ "chat", "chatbox", "chatting" ], "author": "Noman", "license": "MIT", "devDependencies": { "@types/react": "^18.2.28", "@types/styled-components": "^5.1.28", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "eslint": "^8.51.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.1", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "prettier": "^3.0.3", "react": "^18.2.0", "react-dom": "^18.2.0", "typescript": "^5.2.2" }, "dependencies": { "styled-components": "^6.0.9" } }