Files
ThreadNet-Web/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
2.7 KiB
JSON
Raw Normal View History

2026-02-24 15:46:47 +00:00
{
"name": "element-web-monorepo",
"version": "0.0.0",
"description": "Element: the future of secure communication",
"author": "New Vector Ltd.",
"repository": {
"type": "git",
"url": "https://github.com/element-hq/element-web"
},
"license": "SEE LICENSE IN README.md",
"type": "module",
"scripts": {
2026-02-24 15:47:28 +00:00
"i18n": "pnpm -r i18n",
"i18n:sort": "pnpm -r i18n:sort",
"i18n:lint": "pnpm -r i18n:lint",
2026-07-10 10:47:41 +01:00
"lint": "pnpm -r --workspace-concurrency=1 lint:types && pnpm lint:fmt && pnpm lint:js && pnpm -r lint:style && pnpm lint:workflows && pnpm lint:knip",
2026-06-16 13:17:18 +01:00
"lint:fmt": "oxfmt --check",
2026-07-10 10:47:41 +01:00
"lint:fmt:fix": "oxfmt",
2026-07-29 09:26:07 +01:00
"lint:js": "nx run-many -t lint:prepare -p && oxlint",
2026-07-10 10:47:41 +01:00
"lint:js:fix": "oxlint --fix",
2026-03-05 21:42:08 +00:00
"lint:workflows": "find .github/workflows -type f \\( -iname '*.yaml' -o -iname '*.yml' \\) -print -exec action-validator {} ';'",
"lint:knip": "knip --no-tag-hints && knip --strict --exclude unlisted,dependencies,binaries",
2026-07-02 18:59:27 +01:00
"lint:unused-settings": "node scripts/find-unused-settings.ts",
2026-03-05 21:42:08 +00:00
"install:git-hooks": "husky",
"postinstall": "node scripts/pnpm-link.ts && pnpm run -r sane-postinstall",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
2026-06-15 14:24:33 +01:00
"test:unit": "nx run-many -t test:unit:prepare -p && vitest run",
2026-06-10 17:00:34 +01:00
"coverage:diff": "diff-cover --config-file diff-cover.toml apps/web/coverage/lcov.info packages/shared-components/coverage/lcov.info coverage/lcov.info"
2026-02-24 15:46:47 +00:00
},
"devDependencies": {
"@action-validator/cli": "^0.6.0",
"@action-validator/core": "^0.6.0",
"@nx-tools/nx-container": "^7.2.1",
2026-03-31 14:52:50 +02:00
"@playwright/test": "catalog:",
2026-06-29 14:41:41 +00:00
"@types/node": "25",
2026-07-14 09:09:03 +01:00
"@typescript/native": "catalog:",
2026-06-10 17:00:34 +01:00
"@vitest/coverage-v8": "catalog:",
2026-02-24 15:46:47 +00:00
"cronstrue": "^3.0.0",
2026-07-10 10:47:41 +01:00
"eslint-plugin-element-call": "github:element-hq/element-call#livekit&path:/eslint",
"eslint-plugin-storybook": "^10.4.6",
2026-02-24 15:46:47 +00:00
"husky": "^9.0.0",
2026-07-22 13:00:53 +01:00
"knip": "6.27.0",
"lint-staged": "^17.0.0",
2026-02-24 15:46:47 +00:00
"lodash": "^4.17.21",
"mermaid": "^11.13.0",
2026-02-24 15:46:47 +00:00
"minimist": "^1.2.6",
2026-07-17 08:37:44 +00:00
"nx": "23.1.0",
2026-07-17 15:14:07 +01:00
"oxfmt": "0.59.0",
2026-07-10 10:47:41 +01:00
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^7.0.0",
2026-07-14 09:09:03 +01:00
"typescript": "catalog:ts6",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
2026-06-16 13:17:18 +01:00
"vitest": "catalog:",
2026-02-24 15:46:47 +00:00
"yaml": "^2.3.3"
},
"engines": {
"node": ">=22.18"
},
2026-05-29 08:26:59 +00:00
"devEngines": {
"packageManager": {
"name": "pnpm",
2026-07-09 16:48:27 +01:00
"version": "11.5.2",
"onFail": "download"
2026-05-29 08:26:59 +00:00
}
},
"private": true,
"nx": {}
2026-02-24 15:46:47 +00:00
}