2021-07-28 18:45:52 +05:30
|
|
|
{
|
2026-05-13 23:03:14 -04:00
|
|
|
"name": "lotus-chat",
|
2026-05-15 13:41:38 -04:00
|
|
|
"version": "4.12.1-lotus",
|
2026-05-21 19:44:51 -04:00
|
|
|
"description": "Lotus Chat — Matrix client for Lotus Guild",
|
2021-07-28 18:45:52 +05:30
|
|
|
"main": "index.js",
|
2024-05-14 14:01:45 +10:00
|
|
|
"type": "module",
|
2021-07-28 18:45:52 +05:30
|
|
|
"engines": {
|
2022-11-08 20:19:22 +05:30
|
|
|
"node": ">=16.0.0"
|
2021-07-28 18:45:52 +05:30
|
|
|
},
|
|
|
|
|
"scripts": {
|
2022-12-20 20:47:51 +05:30
|
|
|
"start": "vite",
|
|
|
|
|
"build": "vite build",
|
2026-03-07 18:03:32 +11:00
|
|
|
"preview": "vite preview",
|
2026-03-19 16:26:25 +11:00
|
|
|
"lint": "npm run check:eslint && npm run check:prettier",
|
2022-12-20 20:47:51 +05:30
|
|
|
"check:eslint": "eslint src/*",
|
|
|
|
|
"check:prettier": "prettier --check .",
|
|
|
|
|
"fix:prettier": "prettier --write .",
|
2026-03-19 16:26:25 +11:00
|
|
|
"typecheck": "tsc --noEmit",
|
2026-05-21 21:55:39 -04:00
|
|
|
"prepare": "husky",
|
2026-03-19 16:26:25 +11:00
|
|
|
"commit": "git-cz",
|
2026-05-21 19:26:52 -04:00
|
|
|
"semantic-release": "semantic-release",
|
|
|
|
|
"postinstall": "node scripts/patch-folds.mjs"
|
2026-03-19 16:26:25 +11:00
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"*.{ts,tsx,js,jsx}": "eslint",
|
|
|
|
|
"*": "prettier --ignore-unknown --write"
|
|
|
|
|
},
|
|
|
|
|
"config": {
|
|
|
|
|
"commitizen": {
|
|
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"release": {
|
|
|
|
|
"branches": [
|
|
|
|
|
"dev"
|
|
|
|
|
],
|
|
|
|
|
"plugins": [
|
|
|
|
|
"@semantic-release/commit-analyzer",
|
|
|
|
|
"@semantic-release/release-notes-generator",
|
|
|
|
|
[
|
|
|
|
|
"@semantic-release/exec",
|
|
|
|
|
{
|
|
|
|
|
"prepareCmd": "node scripts/update-version.js ${nextRelease.version}"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
"@semantic-release/git",
|
|
|
|
|
{
|
|
|
|
|
"assets": [
|
|
|
|
|
"package.json",
|
|
|
|
|
"package-lock.json",
|
|
|
|
|
"src/app/features/settings/about/About.tsx",
|
|
|
|
|
"src/app/pages/auth/AuthFooter.tsx",
|
|
|
|
|
"src/app/pages/client/WelcomePage.tsx"
|
|
|
|
|
],
|
|
|
|
|
"message": "chore(release): ${nextRelease.version} [skip ci]"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"@semantic-release/github"
|
|
|
|
|
]
|
2021-07-28 18:45:52 +05:30
|
|
|
},
|
|
|
|
|
"keywords": [],
|
2021-07-31 08:21:57 +05:30
|
|
|
"author": "Ajay Bura",
|
2023-02-24 17:28:04 +05:30
|
|
|
"license": "AGPL-3.0-only",
|
2021-07-28 18:45:52 +05:30
|
|
|
"dependencies": {
|
2026-05-21 22:23:19 -04:00
|
|
|
"@atlaskit/pragmatic-drag-and-drop": "1.8.1",
|
|
|
|
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "2.1.5",
|
|
|
|
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "1.1.0",
|
2022-10-18 12:34:05 +05:30
|
|
|
"@fontsource/inter": "4.5.14",
|
2026-05-15 13:37:03 -04:00
|
|
|
"@giphy/js-fetch-api": "5.8.0",
|
2026-05-21 23:09:13 -04:00
|
|
|
"@giphy/js-types": "4.3.0",
|
|
|
|
|
"@giphy/react-components": "1.6.0",
|
2026-05-21 19:44:51 -04:00
|
|
|
"@sentry/react": "10.53.1",
|
2026-05-21 22:23:19 -04:00
|
|
|
"@tanstack/react-query": "5.100.11",
|
|
|
|
|
"@tanstack/react-query-devtools": "5.100.11",
|
|
|
|
|
"@tanstack/react-virtual": "3.13.25",
|
2026-05-21 21:55:39 -04:00
|
|
|
"@types/dompurify": "3.2.0",
|
2023-06-12 21:15:23 +10:00
|
|
|
"await-to-js": "3.0.0",
|
2025-05-24 20:07:56 +05:30
|
|
|
"badwords-list": "2.0.1-4",
|
2026-05-21 22:23:19 -04:00
|
|
|
"blurhash": "2.0.5",
|
2022-09-04 19:51:58 +05:30
|
|
|
"browser-encrypt-attachment": "0.3.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"chroma-js": "3.2.0",
|
|
|
|
|
"classnames": "2.5.1",
|
2022-09-04 19:51:58 +05:30
|
|
|
"dateformat": "5.0.3",
|
2026-05-21 22:23:19 -04:00
|
|
|
"dayjs": "1.11.20",
|
2023-10-14 16:08:43 +11:00
|
|
|
"domhandler": "5.0.3",
|
2026-05-21 21:55:39 -04:00
|
|
|
"dompurify": "3.4.5",
|
2025-02-15 18:59:40 +11:00
|
|
|
"emojibase": "15.3.1",
|
|
|
|
|
"emojibase-data": "15.3.2",
|
2022-09-04 19:51:58 +05:30
|
|
|
"file-saver": "2.0.5",
|
2026-05-21 22:23:19 -04:00
|
|
|
"focus-trap-react": "12.0.2",
|
2026-03-10 23:03:03 +11:00
|
|
|
"folds": "2.6.2",
|
2026-05-21 22:23:19 -04:00
|
|
|
"html-dom-parser": "7.1.0",
|
|
|
|
|
"html-react-parser": "6.1.2",
|
2024-08-14 15:29:34 +02:00
|
|
|
"i18next": "23.12.2",
|
2026-05-21 22:23:19 -04:00
|
|
|
"i18next-browser-languagedetector": "8.2.1",
|
|
|
|
|
"i18next-http-backend": "4.0.0",
|
|
|
|
|
"immer": "11.1.8",
|
2023-06-12 21:15:23 +10:00
|
|
|
"is-hotkey": "0.2.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"jotai": "2.20.0",
|
|
|
|
|
"linkify-react": "4.3.3",
|
|
|
|
|
"linkifyjs": "4.3.3",
|
2026-05-21 22:01:31 -04:00
|
|
|
"lodash": "4.18.1",
|
2025-09-27 10:00:04 +05:30
|
|
|
"matrix-js-sdk": "38.2.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"matrix-widget-api": "1.17.0",
|
2023-06-22 09:14:50 +10:00
|
|
|
"millify": "6.1.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"pdfjs-dist": "5.7.284",
|
2025-03-20 20:27:52 +11:00
|
|
|
"prismjs": "1.30.0",
|
2024-01-21 23:50:56 +11:00
|
|
|
"react": "18.2.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"react-aria": "3.48.0",
|
|
|
|
|
"react-blurhash": "0.3.0",
|
|
|
|
|
"react-colorful": "5.7.0",
|
2024-01-21 23:50:56 +11:00
|
|
|
"react-dom": "18.2.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"react-error-boundary": "6.1.1",
|
2022-09-04 19:51:58 +05:30
|
|
|
"react-google-recaptcha": "2.1.0",
|
2024-08-14 15:29:34 +02:00
|
|
|
"react-i18next": "15.0.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"react-range": "1.10.0",
|
2026-02-14 17:10:43 +11:00
|
|
|
"react-router-dom": "6.30.3",
|
2026-05-15 16:33:13 +10:00
|
|
|
"sanitize-html": "2.17.4",
|
2026-05-21 22:23:19 -04:00
|
|
|
"slate": "0.124.1",
|
|
|
|
|
"slate-dom": "0.124.1",
|
2026-03-11 23:06:53 +11:00
|
|
|
"slate-history": "0.113.1",
|
2026-05-21 22:23:19 -04:00
|
|
|
"slate-react": "0.124.2",
|
|
|
|
|
"styled-components": "6.4.2",
|
|
|
|
|
"ua-parser-js": "2.0.10"
|
2021-07-28 18:45:52 +05:30
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-05-21 22:23:19 -04:00
|
|
|
"@element-hq/element-call-embedded": "0.19.4",
|
2023-01-30 15:20:53 +11:00
|
|
|
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
|
2026-05-21 22:23:19 -04:00
|
|
|
"@rollup/plugin-inject": "5.0.5",
|
|
|
|
|
"@rollup/plugin-wasm": "6.2.2",
|
2026-03-19 16:26:25 +11:00
|
|
|
"@semantic-release/exec": "7.1.0",
|
|
|
|
|
"@semantic-release/git": "10.0.1",
|
2026-05-21 20:30:44 -04:00
|
|
|
"@sentry/vite-plugin": "5.3.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"@types/chroma-js": "3.1.2",
|
|
|
|
|
"@types/file-saver": "2.0.7",
|
2025-02-26 21:42:42 +11:00
|
|
|
"@types/is-hotkey": "0.1.10",
|
2026-05-21 22:23:19 -04:00
|
|
|
"@types/node": "25.9.1",
|
|
|
|
|
"@types/prismjs": "1.26.6",
|
2024-01-21 23:50:56 +11:00
|
|
|
"@types/react": "18.2.39",
|
|
|
|
|
"@types/react-dom": "18.2.17",
|
2026-05-21 22:23:19 -04:00
|
|
|
"@types/react-google-recaptcha": "2.1.9",
|
2026-05-15 16:33:13 +10:00
|
|
|
"@types/sanitize-html": "2.16.1",
|
2026-05-21 22:23:19 -04:00
|
|
|
"@types/ua-parser-js": "0.7.39",
|
2022-12-20 20:47:51 +05:30
|
|
|
"@typescript-eslint/eslint-plugin": "5.46.1",
|
|
|
|
|
"@typescript-eslint/parser": "5.46.1",
|
2026-05-21 20:11:09 -04:00
|
|
|
"@vanilla-extract/css": "1.20.1",
|
|
|
|
|
"@vanilla-extract/recipes": "0.5.7",
|
|
|
|
|
"@vanilla-extract/vite-plugin": "5.2.2",
|
|
|
|
|
"@vitejs/plugin-react": "5.2.0",
|
2023-01-30 15:20:53 +11:00
|
|
|
"buffer": "6.0.3",
|
2026-03-19 16:26:25 +11:00
|
|
|
"cz-conventional-changelog": "3.3.0",
|
2022-12-06 12:48:48 +05:30
|
|
|
"eslint": "8.29.0",
|
2022-09-04 19:51:58 +05:30
|
|
|
"eslint-config-airbnb": "19.0.4",
|
2022-12-20 20:47:51 +05:30
|
|
|
"eslint-config-prettier": "8.5.0",
|
2026-05-21 22:23:19 -04:00
|
|
|
"eslint-plugin-import": "2.32.0",
|
|
|
|
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
|
|
|
"eslint-plugin-react": "7.37.5",
|
2022-09-04 19:51:58 +05:30
|
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
2026-03-19 16:26:25 +11:00
|
|
|
"husky": "9.1.7",
|
|
|
|
|
"lint-staged": "16.3.2",
|
2022-12-20 20:47:51 +05:30
|
|
|
"prettier": "2.8.1",
|
2026-03-19 16:26:25 +11:00
|
|
|
"semantic-release": "25.0.3",
|
2022-12-20 20:47:51 +05:30
|
|
|
"typescript": "4.9.4",
|
2026-05-21 20:11:09 -04:00
|
|
|
"vite": "6.4.2",
|
|
|
|
|
"vite-plugin-pwa": "1.3.0",
|
2026-05-21 21:45:30 -04:00
|
|
|
"vite-plugin-static-copy": "4.1.0"
|
2021-07-28 18:45:52 +05:30
|
|
|
}
|
|
|
|
|
}
|