Files
cinny/package.json
T

176 lines
5.1 KiB
JSON
Raw Normal View History

2021-07-28 18:45:52 +05:30
{
"name": "lotus-chat",
"version": "4.12.1-lotus",
"description": "Lotus Chat — Matrix client for Lotus Guild",
2021-07-28 18:45:52 +05:30
"main": "index.js",
"type": "module",
2021-07-28 18:45:52 +05:30
"engines": {
"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",
"prepare": "husky",
2026-03-19 16:26:25 +11:00
"commit": "git-cz",
"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": {
"@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",
"@fontsource-variable/inter": "5.2.8",
"@giphy/js-fetch-api": "5.8.0",
"@giphy/js-types": "5.1.0",
"@giphy/js-util": "5.2.0",
"@giphy/react-components": "10.1.2",
"@sentry/react": "10.53.1",
"@tanstack/react-query": "5.100.11",
"@tanstack/react-query-devtools": "5.100.11",
"@tanstack/react-virtual": "3.13.25",
"@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",
"blurhash": "2.0.5",
"browser-encrypt-attachment": "0.3.0",
"chroma-js": "3.2.0",
"classnames": "2.5.1",
"dateformat": "5.0.3",
"dayjs": "1.11.20",
"domhandler": "6.0.1",
"dompurify": "3.4.5",
"emojibase": "17.0.0",
"emojibase-data": "17.0.0",
"file-saver": "2.0.5",
"focus-trap-react": "12.0.2",
2026-03-10 23:03:03 +11:00
"folds": "2.6.2",
"html-dom-parser": "7.1.0",
"html-react-parser": "6.1.2",
"i18next": "26.2.0",
"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",
"jotai": "2.20.0",
"linkify-react": "4.3.3",
"linkifyjs": "4.3.3",
"lodash": "4.18.1",
"matrix-js-sdk": "41.6.0-rc.0",
"matrix-widget-api": "1.17.0",
2023-06-22 09:14:50 +10:00
"millify": "6.1.0",
"pdfjs-dist": "5.7.284",
"prismjs": "1.30.0",
2024-01-21 23:50:56 +11:00
"react": "18.2.0",
"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",
"react-error-boundary": "6.1.1",
"react-google-recaptcha": "3.1.0",
"react-i18next": "17.0.8",
"react-range": "1.10.0",
"react-router-dom": "7.15.1",
"sanitize-html": "2.17.4",
"slate": "0.124.1",
"slate-dom": "0.124.1",
"slate-history": "0.113.1",
"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": {
"@element-hq/element-call-embedded": "0.19.4",
2023-01-30 15:20:53 +11:00
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
"@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",
"@sentry/vite-plugin": "5.3.0",
"@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",
"@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",
"@types/react-google-recaptcha": "2.1.9",
"@types/sanitize-html": "2.16.1",
"@types/ua-parser-js": "0.7.39",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@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",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
2026-03-19 16:26:25 +11:00
"husky": "9.1.7",
"lint-staged": "17.0.5",
"prettier": "3.8.3",
2026-03-19 16:26:25 +11:00
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"vite": "6.4.2",
"vite-plugin-pwa": "1.3.0",
"vite-plugin-static-copy": "4.1.0"
},
"overrides": {
"@giphy/js-util": {
"dompurify": ">=3.3.4"
}
2021-07-28 18:45:52 +05:30
}
}