2019-12-06 19:20:31 +01:00
{
2023-05-12 10:52:48 +02:00
"name" : "element-desktop" ,
"productName" : "Element" ,
"main" : "lib/electron-main.js" ,
2023-12-19 17:05:06 +01:00
"version" : "1.11.52" ,
2023-05-12 10:52:48 +02:00
"description" : "A feature-rich client for Matrix.org" ,
"author" : "Element" ,
2023-05-15 10:40:39 +02:00
"homepage" : "https://element.io" ,
2023-05-12 10:52:48 +02:00
"repository" : {
"type" : "git" ,
"url" : "https://github.com/vector-im/element-desktop"
2019-12-06 19:20:31 +01:00
} ,
2023-05-12 10:52:48 +02:00
"license" : "Apache-2.0" ,
"files" : [ ] ,
"engines" : {
"node" : ">=16.0.0"
2019-12-06 19:20:31 +01:00
} ,
2023-05-12 10:52:48 +02:00
"scripts" : {
2023-09-05 18:09:47 +02:00
"i18n" : "matrix-gen-i18n && yarn i18n:sort && yarn i18n:lint" ,
"i18n:sort" : "jq --sort-keys '.' src/i18n/strings/en_EN.json > src/i18n/strings/en_EN.json.tmp && mv src/i18n/strings/en_EN.json.tmp src/i18n/strings/en_EN.json" ,
2023-09-08 10:54:25 +02:00
"i18n:lint" : "prettier --write src/i18n/strings/ --ignore-path /dev/null" ,
2023-09-05 18:09:47 +02:00
"i18n:diff" : "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json" ,
2023-05-12 10:52:48 +02:00
"mkdirs" : "mkdirp packages deploys" ,
"fetch" : "yarn run mkdirs && ts-node scripts/fetch-package.ts" ,
"asar-webapp" : "asar p webapp webapp.asar" ,
"start" : "yarn run build:ts && yarn run build:res && electron ." ,
2023-11-22 16:13:47 +01:00
"lint" : "yarn lint:types && yarn lint:js && yarn lint:workflows" ,
2023-05-12 10:52:48 +02:00
"lint:js" : "yarn lint:js:src && yarn lint:js:test && yarn lint:js:scripts && yarn lint:js:hak" ,
"lint:js:src" : "eslint --max-warnings 0 src" ,
"lint:js:test" : "eslint --max-warnings 0 --config .eslintrc-test.js test" ,
"lint:js:scripts" : "eslint --max-warnings 0 --config .eslintrc-scripts.js scripts" ,
"lint:js:hak" : "eslint --max-warnings 0 --config .eslintrc-hak.js hak" ,
"lint:js-fix" : "yarn lint:js-fix:src &&yarn lint:js-fix:test && yarn lint:js-fix:scripts && yarn lint:js-fix:hak" ,
"lint:js-fix:src" : "eslint --fix --max-warnings 0 src" ,
"lint:js-fix:test" : "eslint --fix --max-warnings 0 --config .eslintrc-test.js test" ,
"lint:js-fix:scripts" : "eslint --fix --max-warnings 0 --config .eslintrc-scripts.js scripts" ,
"lint:js-fix:hak" : "eslint --fix --max-warnings 0 --config .eslintrc-hak.js hak" ,
"lint:types" : "yarn lint:types:src && yarn lint:types:test && yarn lint:types:scripts && yarn lint:types:hak" ,
"lint:types:src" : "tsc --noEmit" ,
"lint:types:test" : "tsc --noEmit -p test/tsconfig.json" ,
"lint:types:scripts" : "tsc --noEmit -p scripts/tsconfig.json" ,
"lint:types:hak" : "tsc --noEmit -p hak/tsconfig.json" ,
2023-11-22 16:13:47 +01:00
"lint:workflows" : "find .github/workflows -type f \\( -iname '*.yaml' -o -iname '*.yml' \\) | xargs -I {} sh -c 'echo \"Linting {}\"; action-validator \"{}\"'" ,
2023-05-12 10:52:48 +02:00
"build:native" : "yarn run hak" ,
"build:native:universal" : "yarn run hak --target x86_64-apple-darwin fetchandbuild && yarn run hak --target aarch64-apple-darwin fetchandbuild && yarn run hak --target x86_64-apple-darwin --target aarch64-apple-darwin copyandlink" ,
"build:32" : "yarn run build:ts && yarn run build:res && electron-builder --ia32" ,
"build:64" : "yarn run build:ts && yarn run build:res && electron-builder --x64" ,
"build:universal" : "yarn run build:ts && yarn run build:res && electron-builder --universal" ,
"build" : "yarn run build:ts && yarn run build:res && electron-builder" ,
"build:ts" : "tsc" ,
"build:res" : "ts-node scripts/copy-res.ts" ,
"docker:setup" : "docker build -t element-desktop-dockerbuild dockerbuild" ,
"docker:build:native" : "scripts/in-docker.sh yarn run hak" ,
"docker:build" : "scripts/in-docker.sh yarn run build" ,
"docker:install" : "scripts/in-docker.sh yarn install" ,
"clean" : "rimraf webapp.asar dist packages deploys lib" ,
"hak" : "ts-node scripts/hak/index.ts" ,
"test" : "jest"
2019-12-06 19:20:31 +01:00
} ,
2023-05-12 10:52:48 +02:00
"dependencies" : {
"@sentry/electron" : "^4.3.0" ,
"auto-launch" : "^5.0.5" ,
"counterpart" : "^0.18.6" ,
"electron-clear-data" : "^1.0.5" ,
"electron-store" : "^8.0.2" ,
"electron-window-state" : "^5.0.3" ,
"minimist" : "^1.2.6" ,
"node-fetch" : "^2" ,
2023-07-11 18:00:24 +02:00
"png-to-ico" : "^2.1.1" ,
"uuid" : "^9.0.0"
2019-12-10 17:04:16 +01:00
} ,
2023-05-12 10:52:48 +02:00
"devDependencies" : {
2023-11-22 16:13:47 +01:00
"@action-validator/cli" : "^0.5.3" ,
"@action-validator/core" : "^0.5.3" ,
2023-05-12 10:52:48 +02:00
"@babel/core" : "^7.18.10" ,
"@babel/preset-env" : "^7.18.10" ,
"@babel/preset-typescript" : "^7.18.6" ,
"@electron/asar" : "^3.2.3" ,
"@types/auto-launch" : "^5.0.1" ,
"@types/counterpart" : "^0.18.1" ,
"@types/detect-libc" : "^1.0.0" ,
"@types/jest" : "^29.0.0" ,
"@types/minimist" : "^1.2.1" ,
"@types/mkdirp" : "^1.0.2" ,
2023-12-13 14:21:21 +01:00
"@types/node" : "16.18.68" ,
2023-05-12 10:52:48 +02:00
"@types/pacote" : "^11.1.1" ,
"@types/tar" : "^6.1.3" ,
2023-07-11 18:00:24 +02:00
"@types/uuid" : "^9.0.2" ,
2023-05-12 10:52:48 +02:00
"@typescript-eslint/eslint-plugin" : "^5.42.0" ,
"@typescript-eslint/parser" : "^5.42.0" ,
"allchange" : "^1.0.6" ,
2023-12-13 14:20:47 +01:00
"app-builder-lib" : "24.9.4" ,
2023-05-12 10:52:48 +02:00
"babel-jest" : "^29.0.0" ,
"chokidar" : "^3.5.2" ,
"detect-libc" : "^1.0.3" ,
2023-12-13 14:22:47 +01:00
"electron" : "^28.0.0" ,
2023-11-28 19:30:05 +01:00
"electron-builder" : "24.9.1" ,
2023-12-13 15:33:27 +01:00
"electron-builder-squirrel-windows" : "24.9.4" ,
2023-05-12 10:52:48 +02:00
"electron-devtools-installer" : "^3.2.0" ,
"eslint" : "^8.26.0" ,
"eslint-config-google" : "^0.14.0" ,
2023-08-08 18:13:56 +02:00
"eslint-config-prettier" : "^9.0.0" ,
2023-05-12 10:52:48 +02:00
"eslint-plugin-import" : "^2.25.4" ,
"eslint-plugin-matrix-org" : "^1.0.0" ,
2023-10-31 19:40:08 +01:00
"eslint-plugin-unicorn" : "^49.0.0" ,
2023-05-12 10:52:48 +02:00
"expect-playwright" : "^0.8.0" ,
"find-npm-prefix" : "^1.0.2" ,
"fs-extra" : "^11.0.0" ,
"glob" : "^10.0.0" ,
"jest" : "^29.0.0" ,
2023-10-03 16:03:02 +02:00
"matrix-web-i18n" : "^3.1.3" ,
2023-05-12 10:52:48 +02:00
"mkdirp" : "^3.0.0" ,
"node-pre-gyp" : "^0.17.0" ,
2023-09-05 22:23:00 +02:00
"pacote" : "^17.0.0" ,
2023-10-18 12:49:38 +02:00
"playwright" : "1.37.1" ,
2023-05-12 10:52:48 +02:00
"prettier" : "^2.8.1" ,
"rimraf" : "^5.0.0" ,
"tar" : "^6.1.2" ,
"ts-jest" : "^29.0.0" ,
"ts-node" : "^10.9.1" ,
2023-12-13 14:20:02 +01:00
"typescript" : "5.3.3"
2023-05-12 10:52:48 +02:00
} ,
"hakDependencies" : {
2023-05-16 13:23:42 +02:00
"matrix-seshat" : "^3.0.1" ,
2023-05-12 10:52:48 +02:00
"keytar" : "^7.9.0"
} ,
"resolutions" : {
2023-12-13 14:21:21 +01:00
"@types/node" : "16.18.68"
2023-05-12 10:52:48 +02:00
} ,
"build" : {
"appId" : "im.riot.app" ,
"asarUnpack" : "**/*.node" ,
"files" : [
"package.json" ,
{
"from" : ".hak/hakModules" ,
"to" : "node_modules"
} ,
"lib/**"
] ,
"extraResources" : [
{
"from" : "res/img" ,
"to" : "img"
} ,
"webapp.asar"
] ,
"linux" : {
"target" : [
"tar.gz" ,
"deb"
] ,
"category" : "Network;InstantMessaging;Chat" ,
2023-05-15 10:40:39 +02:00
"maintainer" : "support@element.io" ,
"icon" : "build/icons"
} ,
"deb" : {
"packageCategory" : "net" ,
"depends" : [
"libgtk-3-0" ,
"libnotify4" ,
"libnss3" ,
"libxss1" ,
"libxtst6" ,
"xdg-utils" ,
"libatspi2.0-0" ,
"libuuid1" ,
"libsecret-1-0" ,
"libasound2" ,
"libgbm1"
] ,
"recommends" : [
"libsqlcipher0" ,
"element-io-archive-keyring"
]
2023-05-12 10:52:48 +02:00
} ,
"mac" : {
"category" : "public.app-category.social-networking" ,
"darkModeSupport" : true ,
2023-05-15 10:40:39 +02:00
"hardenedRuntime" : true ,
"gatekeeperAssess" : true ,
"entitlements" : "./build/entitlements.mac.plist" ,
"icon" : "build/icons/icon.icns"
2023-05-12 10:52:48 +02:00
} ,
"win" : {
"target" : [
"squirrel"
2023-05-15 10:40:39 +02:00
] ,
"signingHashAlgorithms" : [
"sha256"
] ,
"icon" : "build/icons/icon.ico"
2023-05-12 10:52:48 +02:00
} ,
"directories" : {
"output" : "dist"
} ,
"protocols" : [
{
"name" : "element" ,
"schemes" : [
"element"
]
}
]
} ,
"jest" : {
"testEnvironment" : "node" ,
"testMatch" : [
"<rootDir>/test/**/*-test.[jt]s?(x)"
] ,
"setupFilesAfterEnv" : [
"expect-playwright"
2020-04-15 20:30:03 +02:00
]
2023-05-12 10:52:48 +02:00
}
2019-12-06 19:20:31 +01:00
}