UNPKG

@chatscope/chat-ui-kit-react

Version:

React component library for creating chat interfaces

148 lines (147 loc) 4.06 kB
{ "name": "@chatscope/chat-ui-kit-react", "version": "2.1.1", "description": "React component library for creating chat interfaces", "license": "MIT", "homepage": "https://chatscope.io/", "keywords": [ "chat", "react", "reactjs", "ui", "user interface", "components", "ui kit", "communication", "conversation", "toolkit", "library", "frontend", "reusable", "feed", "comments", "social", "talk" ], "repository": { "type": "git", "url": "https://github.com/chatscope/chat-ui-kit-react.git" }, "main": "dist/cjs/index.js", "module": "dist/es/index.js", "types": "src/types/index.d.ts", "peerDependencies": { "prop-types": "^15.7.2", "react": "^16.12.0 || ^17.0.0 || ^18.2.0 || ^19.0.0", "react-dom": "^16.12.0 || ^17.0.0 || ^18.2.0 || ^19.0.0" }, "devDependencies": { "@babel/cli": "7.10.5", "@babel/core": "7.11.4", "@babel/plugin-proposal-class-properties": "7.10.4", "@babel/preset-env": "7.11.5", "@babel/preset-react": "7.10.4", "@commitlint/cli": "11.0.0", "@commitlint/config-conventional": "11.0.0", "@rollup/plugin-babel": "5.2.0", "@rollup/plugin-commonjs": "11.1.0", "@rollup/plugin-node-resolve": "7.1.3", "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/github": "9.2.6", "@typescript-eslint/eslint-plugin": "^5.9.1", "@typescript-eslint/parser": "^5.9.1", "babel-eslint": "10.1.0", "babel-plugin-transform-react-remove-prop-types": "0.4.24", "chokidar-cli": "2.1.0", "eslint": "8.6.0", "eslint-plugin-jsx-a11y": "6.5.1", "eslint-plugin-react": "7.28.0", "eslint-plugin-react-hooks": "^4.3.0", "husky": "4.3.0", "lint-staged": "10.4.0", "prettier": "2.1.2", "react": "^18.2.0", "react-dom": "^18.2.0", "rollup": "2.26.5", "rollup-plugin-peer-deps-external": "2.2.3", "rollup-plugin-terser": "5.3.0", "semantic-release": "23.0.2", "typescript": "^4.5.4" }, "scripts": { "build:clean": "rm -Rf dist", "build:umd": "rollup -c", "build:cjs": "BABEL_ENV=cjs babel src/components -d dist/cjs", "build:esm": "BABEL_ENV=esm babel src/components -d dist/es", "build": "yarn run build:clean && yarn run build:esm && yarn run build:cjs && yarn run build:umd", "pack": "yarn pack", "watch": "chokidar 'src/**/*.*' -c 'yarn run build:esm'" }, "dependencies": { "@chatscope/chat-ui-kit-styles": "^1.2.0", "@fortawesome/fontawesome-free": "^6.5.2", "@fortawesome/fontawesome-svg-core": "^6.5.2", "@fortawesome/free-solid-svg-icons": "^6.5.2", "@fortawesome/react-fontawesome": "^0.2.2", "classnames": "^2.2.6", "prop-types": "^15.7.2" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,css,md,jsx}": "prettier --write" }, "files": [ "dist", "src/**/*.d.ts" ], "publishConfig": { "access": "public" }, "release": { "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "angular", "releaseRules": [ { "type": "docs", "scope": "readme", "release": "patch" }, { "scope": "no-release", "release": false } ] } ], "@semantic-release/release-notes-generator", [ "@semantic-release/changelog", { "changelogFile": "CHANGELOG.md", "changelogTitle": "# @chatscope/chat-ui-kit-react changelog" } ], "@semantic-release/github", "@semantic-release/npm", [ "@semantic-release/git", { "assets": [ "package.json", "CHANGELOG.md" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] ] } }