487 lines
18 KiB
JSON
487 lines
18 KiB
JSON
{
|
|
"name": "signal-desktop",
|
|
"productName": "Signal",
|
|
"description": "Private messaging from your desktop",
|
|
"desktopName": "signal.desktop",
|
|
"repository": "https://github.com/signalapp/Signal-Desktop.git",
|
|
"version": "5.50.0-beta.1",
|
|
"license": "AGPL-3.0-only",
|
|
"author": {
|
|
"name": "Signal Messenger, LLC",
|
|
"email": "support@signal.org"
|
|
},
|
|
"main": "app/main.js",
|
|
"scripts": {
|
|
"postinstall": "yarn build:acknowledgments && patch-package && yarn electron:install-app-deps && rimraf node_modules/dtrace-provider",
|
|
"postuninstall": "yarn build:acknowledgments",
|
|
"start": "electron .",
|
|
"generate": "npm-run-all build-protobuf build:esbuild sass get-expire-time copy-and-concat",
|
|
"build-release": "yarn run build",
|
|
"sign-release": "node ts/updater/generateSignature.js",
|
|
"notarize": "echo 'No longer necessary'",
|
|
"get-strings": "node ts/scripts/get-strings.js",
|
|
"get-expire-time": "node ts/scripts/get-expire-time.js",
|
|
"copy-and-concat": "node ts/scripts/copy-and-concat.js",
|
|
"sass": "sass stylesheets/manifest.scss:stylesheets/manifest.css stylesheets/manifest_bridge.scss:stylesheets/manifest_bridge.css",
|
|
"build-module-protobuf": "pbjs --target static-module --force-long --no-verify --no-create --wrap commonjs --out ts/protobuf/compiled.js protos/*.proto && pbts --out ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
|
|
"clean-module-protobuf": "rm -f ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
|
|
"build-protobuf": "yarn build-module-protobuf",
|
|
"clean-protobuf": "yarn clean-module-protobuf",
|
|
"prepare-beta-build": "node scripts/prepare_beta_build.js",
|
|
"prepare-alpha-build": "node scripts/prepare_alpha_build.js",
|
|
"prepare-alpha-version": "node scripts/prepare_alpha_version.js",
|
|
"prepare-staging-build": "node scripts/prepare_staging_build.js",
|
|
"prepare-windows-cert": "node scripts/prepare_windows_cert.js",
|
|
"publish-to-apt": "NAME=$npm_package_name VERSION=$npm_package_version ./aptly.sh",
|
|
"test": "yarn test-node && yarn test-electron",
|
|
"test-electron": "node ts/scripts/test-electron.js",
|
|
"test-release": "node ts/scripts/test-release.js",
|
|
"test-node": "electron-mocha --file test/setup-test-node.js --recursive test/modules ts/test-node ts/test-both",
|
|
"test-mock": "mocha ts/test-mock/**/*_test.js",
|
|
"test-node-coverage": "nyc --reporter=lcov --reporter=text mocha --recursive test/modules ts/test-node ts/test-both",
|
|
"eslint": "eslint --cache .",
|
|
"lint": "run-s --print-label lint-prettier check:types eslint",
|
|
"lint-deps": "node ts/util/lint/linter.js",
|
|
"lint-license-comments": "ts-node ts/util/lint/license_comments.ts",
|
|
"lint-prettier": "pprettier --check '**/*.{ts,tsx,d.ts,js,json,html,scss,md,yml,yaml}' '!node_modules/**'",
|
|
"format": "pprettier --write '**/*.{ts,tsx,d.ts,js,json,html,scss,md,yml,yaml}' '!node_modules/**'",
|
|
"transpile": "run-p check:types build:esbuild",
|
|
"check:types": "tsc --noEmit",
|
|
"clean-transpile-once": "rimraf app/**/*.js app/*.js sticker-creator/**/*.js sticker-creator/*.js ts/**/*.js ts/*.js tsconfig.tsbuildinfo",
|
|
"clean-transpile": "yarn run clean-transpile-once && yarn run clean-transpile-once",
|
|
"open-coverage": "open coverage/lcov-report/index.html",
|
|
"ready": "npm-run-all --print-label clean-transpile generate --parallel lint lint-deps test-node test-electron",
|
|
"dev": "run-p --print-label dev:*",
|
|
"dev:transpile": "run-p \"check:types --watch\" dev:esbuild",
|
|
"dev:webpack": "run-p dev:esbuild dev:webpack:sticker-creator",
|
|
"dev:webpack:sticker-creator": "cross-env NODE_ENV=development webpack serve --mode development",
|
|
"dev:esbuild": "node scripts/esbuild.js --watch",
|
|
"dev:typed-scss": "yarn build:typed-scss -w",
|
|
"dev:storybook": "cross-env SIGNAL_ENV=storybook start-storybook -p 6006 -s ./",
|
|
"dev:sass": "yarn sass --watch",
|
|
"build": "run-s --print-label generate build:typed-scss build:webpack build:release",
|
|
"build:acknowledgments": "node scripts/generate-acknowledgments.js",
|
|
"build:dev": "run-s --print-label generate build:typed-scss build:webpack",
|
|
"build:typed-scss": "tsm sticker-creator",
|
|
"build:webpack": "run-p build:webpack:sticker-creator \"build:esbuild --prod\"",
|
|
"build:webpack:sticker-creator": "cross-env NODE_ENV=production webpack",
|
|
"build:esbuild": "node scripts/esbuild.js",
|
|
"build:electron": "electron-builder --config.extraMetadata.environment=$SIGNAL_ENV",
|
|
"build:release": "cross-env SIGNAL_ENV=production yarn build:electron -- --config.directories.output=release",
|
|
"preverify:ts": "yarn build:typed-scss",
|
|
"verify": "run-p --print-label verify:*",
|
|
"verify:ts": "tsc --noEmit",
|
|
"electron:install-app-deps": "electron-builder install-app-deps"
|
|
},
|
|
"optionalDependencies": {
|
|
"fs-xattr": "0.3.0"
|
|
},
|
|
"dependencies": {
|
|
"@indutny/frameless-titlebar": "2.3.4",
|
|
"@popperjs/core": "2.9.2",
|
|
"@react-spring/web": "9.4.5",
|
|
"@signalapp/libsignal-client": "0.17.0",
|
|
"@sindresorhus/is": "0.8.0",
|
|
"@types/fabric": "4.5.3",
|
|
"abort-controller": "3.0.0",
|
|
"array-move": "2.1.0",
|
|
"axe-core": "4.1.4",
|
|
"backbone": "1.4.0",
|
|
"better-sqlite3": "https://github.com/signalapp/better-sqlite3#3c4a7eebba3d5f5d8cb88fe83be1c01b8c0dea7d",
|
|
"bezier-easing": "2.1.0",
|
|
"blob-util": "2.0.2",
|
|
"blueimp-load-image": "5.14.0",
|
|
"blurhash": "1.1.3",
|
|
"classnames": "2.2.5",
|
|
"config": "1.28.1",
|
|
"copy-text-to-clipboard": "2.1.0",
|
|
"dashdash": "1.14.1",
|
|
"dicer": "0.3.1",
|
|
"direction": "1.0.4",
|
|
"emoji-datasource": "14.0.0",
|
|
"emoji-datasource-apple": "14.0.0",
|
|
"emoji-regex": "10.1.0",
|
|
"encoding": "0.1.13",
|
|
"fabric": "4.6.0",
|
|
"fast-glob": "3.2.1",
|
|
"filesize": "3.6.1",
|
|
"firstline": "1.2.1",
|
|
"focus-trap-react": "8.8.1",
|
|
"form-data": "4.0.0",
|
|
"fs-extra": "5.0.0",
|
|
"fuse.js": "6.5.3",
|
|
"glob": "7.1.6",
|
|
"google-libphonenumber": "3.2.27",
|
|
"got": "11.8.5",
|
|
"heic-convert": "1.2.4",
|
|
"history": "4.9.0",
|
|
"humanize-duration": "3.27.1",
|
|
"intl-tel-input": "17.0.13",
|
|
"jquery": "3.5.0",
|
|
"js-yaml": "3.13.1",
|
|
"linkify-it": "2.2.0",
|
|
"lodash": "4.17.21",
|
|
"long": "4.0.0",
|
|
"lru-cache": "6.0.0",
|
|
"mac-screen-capture-permissions": "2.0.0",
|
|
"memoizee": "0.4.14",
|
|
"mkdirp": "0.5.2",
|
|
"moment": "2.29.4",
|
|
"mustache": "2.3.0",
|
|
"node-fetch": "2.6.7",
|
|
"node-forge": "1.3.0",
|
|
"normalize-path": "3.0.0",
|
|
"p-map": "2.1.0",
|
|
"p-props": "4.0.0",
|
|
"p-queue": "6.6.2",
|
|
"p-timeout": "4.1.0",
|
|
"parchment": "1.1.4",
|
|
"pify": "3.0.0",
|
|
"pino": "6.11.1",
|
|
"pino-multi-stream": "5.3.0",
|
|
"protobufjs": "6.11.3",
|
|
"proxy-agent": "5.0.0",
|
|
"qrcode-generator": "1.4.4",
|
|
"quill": "1.3.7",
|
|
"quill-delta": "4.0.1",
|
|
"react": "17.0.2",
|
|
"react-blurhash": "0.1.2",
|
|
"react-contextmenu": "2.11.0",
|
|
"react-dom": "17.0.2",
|
|
"react-dropzone": "10.2.2",
|
|
"react-hot-loader": "4.13.0",
|
|
"react-measure": "2.3.0",
|
|
"react-popper": "2.3.0",
|
|
"react-quill": "2.0.0-beta.4",
|
|
"react-redux": "7.2.8",
|
|
"react-router-dom": "5.0.1",
|
|
"react-sortable-hoc": "2.0.0",
|
|
"react-textarea-autosize": "8.3.4",
|
|
"react-virtualized": "9.22.3",
|
|
"read-last-lines": "1.8.0",
|
|
"redux": "4.1.2",
|
|
"redux-logger": "3.0.6",
|
|
"redux-promise-middleware": "6.1.0",
|
|
"redux-thunk": "2.3.0",
|
|
"redux-ts-utils": "3.2.2",
|
|
"reselect": "4.1.2",
|
|
"rimraf": "2.6.2",
|
|
"ringrtc": "https://github.com/signalapp/signal-ringrtc-node.git#3e05d7ec7b1878df69e0d7b215b693d82b3b3791",
|
|
"rotating-file-stream": "2.1.5",
|
|
"sanitize.css": "11.0.0",
|
|
"semver": "5.4.1",
|
|
"sharp": "0.30.5",
|
|
"split2": "4.0.0",
|
|
"testcheck": "1.0.0-rc.2",
|
|
"typeface-inter": "3.10.0",
|
|
"underscore": "1.12.1",
|
|
"uuid": "3.3.2",
|
|
"websocket": "1.0.28",
|
|
"zod": "3.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.14.3",
|
|
"@babel/plugin-proposal-class-properties": "7.17.12",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "7.17.12",
|
|
"@babel/plugin-proposal-optional-chaining": "7.17.12",
|
|
"@babel/plugin-transform-runtime": "7.18.2",
|
|
"@babel/plugin-transform-typescript": "7.18.4",
|
|
"@babel/preset-react": "7.17.12",
|
|
"@babel/preset-typescript": "7.17.12",
|
|
"@electron/fuses": "1.5.0",
|
|
"@mixer/parallel-prettier": "2.0.1",
|
|
"@signalapp/mock-server": "1.5.1",
|
|
"@storybook/addon-a11y": "6.5.6",
|
|
"@storybook/addon-actions": "6.5.6",
|
|
"@storybook/addon-controls": "6.5.6",
|
|
"@storybook/addon-interactions": "6.5.9",
|
|
"@storybook/addon-knobs": "6.4.0",
|
|
"@storybook/addon-measure": "6.5.6",
|
|
"@storybook/addon-toolbars": "6.5.6",
|
|
"@storybook/addon-viewport": "6.5.6",
|
|
"@storybook/addons": "6.5.6",
|
|
"@storybook/jest": "0.0.10",
|
|
"@storybook/react": "6.5.6",
|
|
"@storybook/testing-library": "0.0.13",
|
|
"@types/backbone": "1.4.5",
|
|
"@types/better-sqlite3": "7.5.0",
|
|
"@types/blueimp-load-image": "5.14.1",
|
|
"@types/chai": "4.2.18",
|
|
"@types/chai-as-promised": "7.1.4",
|
|
"@types/classnames": "2.2.3",
|
|
"@types/config": "0.0.39",
|
|
"@types/dashdash": "1.14.0",
|
|
"@types/debug": "4.1.7",
|
|
"@types/dicer": "0.2.2",
|
|
"@types/direction": "1.0.0",
|
|
"@types/filesize": "3.6.0",
|
|
"@types/fs-extra": "5.0.5",
|
|
"@types/google-libphonenumber": "7.4.23",
|
|
"@types/history": "4.7.2",
|
|
"@types/humanize-duration": "3.18.1",
|
|
"@types/intl-tel-input": "17.0.4",
|
|
"@types/jquery": "3.5.6",
|
|
"@types/js-yaml": "3.12.0",
|
|
"@types/linkify-it": "2.1.0",
|
|
"@types/lodash": "4.14.106",
|
|
"@types/long": "4.0.1",
|
|
"@types/lru-cache": "5.1.0",
|
|
"@types/memoizee": "0.4.2",
|
|
"@types/mkdirp": "0.5.2",
|
|
"@types/mocha": "9.0.0",
|
|
"@types/mustache": "4.1.2",
|
|
"@types/node": "16.11.29",
|
|
"@types/node-fetch": "2.5.7",
|
|
"@types/node-forge": "0.9.5",
|
|
"@types/normalize-path": "3.0.0",
|
|
"@types/pify": "3.0.2",
|
|
"@types/pino": "6.3.6",
|
|
"@types/pino-multi-stream": "5.1.0",
|
|
"@types/quill": "1.3.10",
|
|
"@types/react": "17.0.45",
|
|
"@types/react-dom": "17.0.17",
|
|
"@types/react-measure": "2.0.5",
|
|
"@types/react-redux": "7.1.24",
|
|
"@types/react-router-dom": "4.3.4",
|
|
"@types/react-sortable-hoc": "0.6.5",
|
|
"@types/react-virtualized": "9.18.12",
|
|
"@types/redux-logger": "3.0.7",
|
|
"@types/rimraf": "2.0.2",
|
|
"@types/semver": "5.5.0",
|
|
"@types/sharp": "0.29.4",
|
|
"@types/sinon": "10.0.2",
|
|
"@types/split2": "3.2.1",
|
|
"@types/terser-webpack-plugin": "5.0.3",
|
|
"@types/underscore": "1.10.3",
|
|
"@types/uuid": "3.4.4",
|
|
"@types/webpack-dev-server": "3.11.3",
|
|
"@types/websocket": "1.0.0",
|
|
"@types/yargs": "17.0.7",
|
|
"@typescript-eslint/eslint-plugin": "5.6.0",
|
|
"@typescript-eslint/parser": "5.6.0",
|
|
"arraybuffer-loader": "1.0.3",
|
|
"asar": "3.1.0",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-loader": "8.0.6",
|
|
"babel-plugin-lodash": "3.3.4",
|
|
"chai": "4.3.4",
|
|
"chai-as-promised": "7.1.1",
|
|
"core-js": "2.6.9",
|
|
"cross-env": "5.2.0",
|
|
"css-loader": "3.2.0",
|
|
"debug": "4.3.3",
|
|
"electron": "19.0.7",
|
|
"electron-builder": "23.0.8",
|
|
"electron-mocha": "11.0.2",
|
|
"electron-notarize": "1.2.1",
|
|
"esbuild": "0.14.28",
|
|
"eslint": "7.7.0",
|
|
"eslint-config-airbnb-typescript-prettier": "4.2.0",
|
|
"eslint-config-prettier": "6.11.0",
|
|
"eslint-plugin-import": "2.22.0",
|
|
"eslint-plugin-mocha": "9.0.0",
|
|
"eslint-plugin-more": "1.0.0",
|
|
"eslint-plugin-react": "7.20.6",
|
|
"file-loader": "4.2.0",
|
|
"html-webpack-plugin": "5.3.1",
|
|
"mocha": "9.1.3",
|
|
"mocha-testcheck": "1.0.0-rc.0",
|
|
"node-gyp": "9.0.0",
|
|
"npm-run-all": "4.1.5",
|
|
"nyc": "11.4.1",
|
|
"patch-package": "6.4.7",
|
|
"playwright": "1.17.1",
|
|
"prettier": "2.6.0",
|
|
"sass": "1.49.7",
|
|
"sass-loader": "10.2.0",
|
|
"sinon": "11.1.1",
|
|
"style-loader": "1.0.0",
|
|
"terser-webpack-plugin": "5.1.1",
|
|
"ts-loader": "4.1.0",
|
|
"ts-node": "8.3.0",
|
|
"typed-scss-modules": "4.1.1",
|
|
"typescript": "4.6.2",
|
|
"webpack": "5.30.0",
|
|
"webpack-cli": "4.9.2",
|
|
"webpack-dev-server": "4.7.4"
|
|
},
|
|
"resolutions": {
|
|
"@storybook/react/@storybook/core/node-fetch": "2.6.1",
|
|
"@types/react": "17.0.45",
|
|
"@types/react-dom": "17.0.17",
|
|
"dmg-license": "https://registry.yarnpkg.com/nop/-/nop-1.0.0.tgz",
|
|
"fabric/canvas": "https://registry.yarnpkg.com/nop/-/nop-1.0.0.tgz",
|
|
"fabric/jsdom": "https://registry.yarnpkg.com/nop/-/nop-1.0.0.tgz",
|
|
"fast-glob/glob-parent": "5.1.2",
|
|
"read-last-lines/mz/thenify-all/thenify": "3.3.1",
|
|
"sharp/color/color-string": "1.7.4"
|
|
},
|
|
"engines": {
|
|
"node": "16.13.2"
|
|
},
|
|
"build": {
|
|
"appId": "org.whispersystems.signal-desktop",
|
|
"mac": {
|
|
"artifactName": "${name}-mac-${arch}-${version}.${ext}",
|
|
"category": "public.app-category.social-networking",
|
|
"darkModeSupport": true,
|
|
"hardenedRuntime": true,
|
|
"entitlements": "./build/entitlements.mac.plist",
|
|
"icon": "build/icons/mac/icon.icns",
|
|
"publish": [
|
|
{
|
|
"provider": "generic",
|
|
"url": "https://updates.signal.org/desktop"
|
|
}
|
|
],
|
|
"mergeASARs": true,
|
|
"singleArchFiles": "node_modules/{@signalapp/libsignal-client/prebuilds/**,ringrtc/build/**,sharp/**}",
|
|
"target": [
|
|
{
|
|
"target": "zip",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"x64",
|
|
"arm64",
|
|
"universal"
|
|
]
|
|
}
|
|
],
|
|
"bundleVersion": "1"
|
|
},
|
|
"win": {
|
|
"artifactName": "${name}-win-${version}.${ext}",
|
|
"certificateSubjectName": "Signal Messenger, LLC",
|
|
"certificateSha1": "8C9A0B5C852EC703D83EF7BFBCEB54B796073759",
|
|
"signingHashAlgorithms": [
|
|
"sha256"
|
|
],
|
|
"publisherName": "Signal Messenger, LLC",
|
|
"icon": "build/icons/win/icon.ico",
|
|
"publish": [
|
|
{
|
|
"provider": "generic",
|
|
"url": "https://updates.signal.org/desktop"
|
|
}
|
|
],
|
|
"target": [
|
|
"nsis"
|
|
]
|
|
},
|
|
"nsis": {
|
|
"deleteAppDataOnUninstall": true
|
|
},
|
|
"linux": {
|
|
"category": "Network;InstantMessaging;Chat",
|
|
"desktop": {
|
|
"StartupWMClass": "Signal"
|
|
},
|
|
"target": [
|
|
"deb"
|
|
],
|
|
"icon": "build/icons/png"
|
|
},
|
|
"deb": {
|
|
"depends": [
|
|
"libnotify4",
|
|
"libxtst6",
|
|
"libnss3",
|
|
"libasound2",
|
|
"libxss1"
|
|
]
|
|
},
|
|
"protocols": {
|
|
"name": "sgnl-url-scheme",
|
|
"schemes": [
|
|
"sgnl",
|
|
"signalcaptcha"
|
|
]
|
|
},
|
|
"beforeBuild": "scripts/install-cross-deps.js",
|
|
"afterPack": "ts/scripts/after-pack.js",
|
|
"afterSign": "ts/scripts/after-sign.js",
|
|
"afterAllArtifactBuild": "ts/scripts/after-all-artifact-build.js",
|
|
"asar": {
|
|
"smartUnpack": false
|
|
},
|
|
"asarUnpack": [
|
|
"**/*.node",
|
|
"node_modules/sharp/{build,vendor}/**",
|
|
"!node_modules/sharp/**/*.{js,json}"
|
|
],
|
|
"files": [
|
|
"package.json",
|
|
"config/default.json",
|
|
"config/${env.SIGNAL_ENV}.json",
|
|
"config/local-${env.SIGNAL_ENV}.json",
|
|
"background.html",
|
|
"about.html",
|
|
"screenShare.html",
|
|
"settings.html",
|
|
"permissions_popup.html",
|
|
"debug_log.html",
|
|
"loading.html",
|
|
"_locales/**",
|
|
"protos/*",
|
|
"js/**",
|
|
"libtextsecure/**",
|
|
"ts/**/*.js",
|
|
"ts/*.js",
|
|
"stylesheets/*.css",
|
|
"!js/register.js",
|
|
"app/*",
|
|
"preload.bundle.js",
|
|
"preload_utils.js",
|
|
"main.js",
|
|
"images/**",
|
|
"fonts/**",
|
|
"sounds/*",
|
|
"build/icons",
|
|
"node_modules/**",
|
|
"sticker-creator/preload.js",
|
|
"sticker-creator/window/*.js",
|
|
"sticker-creator/dist/**",
|
|
"!node_modules/emoji-datasource/emoji_pretty.json",
|
|
"!node_modules/emoji-datasource/**/*.png",
|
|
"!node_modules/emoji-datasource-apple/emoji_pretty.json",
|
|
"!node_modules/emoji-datasource-apple/img/apple/sheets*",
|
|
"!node_modules/spellchecker/vendor/hunspell/**/*",
|
|
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,test,__tests__,tests,powered-test,example,examples,*.d.ts,.snyk-*.flag,benchmark}",
|
|
"!**/node_modules/.bin",
|
|
"!**/node_modules/**/build/**",
|
|
"node_modules/intl-tel-input/build/**",
|
|
"!**/node_modules/**/prebuilds/**",
|
|
"!**/*.{o,hprof,orig,pyc,pyo,rbc}",
|
|
"!**/._*",
|
|
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.flowconfig,.yarn-metadata.json,.idea,appveyor.yml,.travis.yml,circle.yml,npm-debug.log,.nyc_output,yarn.lock,.yarn-integrity}",
|
|
"node_modules/spellchecker/build/Release/*.node",
|
|
"node_modules/websocket/build/Release/*.node",
|
|
"!node_modules/websocket/builderror.log",
|
|
"node_modules/socks/build/*.js",
|
|
"node_modules/socks/build/common/*.js",
|
|
"node_modules/socks/build/client/*.js",
|
|
"node_modules/smart-buffer/build/*.js",
|
|
"node_modules/sharp/build/**/*${arch}*.node",
|
|
"node_modules/sharp/build/**/*.dll",
|
|
"!node_modules/sharp/{install,src,vendor}",
|
|
"!node_modules/sharp/vendor",
|
|
"node_modules/sharp/vendor/*/*${arch}*/**",
|
|
"!node_modules/sharp/vendor/*/*${arch}*/**/include/**",
|
|
"!node_modules/sharp/vendor/*/*win32*/**/*.{dll,lib}",
|
|
"!node_modules/better-sqlite3/deps/*",
|
|
"!node_modules/better-sqlite3/src/*",
|
|
"node_modules/better-sqlite3/build/Release/better_sqlite3.node",
|
|
"node_modules/@signalapp/libsignal-client/prebuilds/${platform}-${arch}/*.node",
|
|
"node_modules/ringrtc/build/${platform}/*${arch}*.node",
|
|
"node_modules/mac-screen-capture-permissions/build/Release/*.node",
|
|
"!**/node_modules/react-dom/*/*.development.js",
|
|
"!node_modules/.cache"
|
|
]
|
|
}
|
|
}
|