Files
brave-core/package.json
T
Kamil Jozwiak 859712f35c Update from Chromium 140.0.7339.80 to Chromium 140.0.7339.133. (#31122)
<!-- Add brave-browser issue below that this PR will resolve -->
Resolves https://github.com/brave/brave-browser/issues/49123

<!-- CI-related labels that can be applied to this PR:
* CI/run-audit-deps (1) - check for known npm/cargo vulnerabilities
(audit_deps)
* CI/run-network-audit (1) - run network-audit
* CI/run-upstream-tests - run Chromium unit and browser tests on Linux
and Windows (otherwise only on Linux)
* CI/run-linux-arm64, CI/run-macos-x64, CI/run-windows-arm64,
CI/run-windows-x86 - run builds that would otherwise be skipped
* CI/skip - do not run CI builds (except noplatform)
* CI/skip-linux-x64, CI/skip-android, CI/skip-macos-arm64, CI/skip-ios,
CI/skip-windows-x64 - skip CI builds for specific platforms
* CI/skip-upstream-tests - do not run Chromium unit, or browser tests
(otherwise only on Linux)
* CI/skip-all-linters - do not run presubmit and lint checks
* CI/storybook-url (1) - deploy storybook and provide a unique URL for
each build

(1) applied automatically when some files are changed (see:
https://github.com/brave/brave-core/blob/master/.github/labeler.yml)
-->

<!--
## Checklist:

- Review design docs
[Browser design
principles](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/docs/chrome_browser_design_principles.md)
[Style
guide](https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++.md)
[Core principles](https://www.chromium.org/developers/core-principles/)
- Ensure there are
(tests)[https://www.chromium.org/developers/testing/]. Unit test as much
as possible (including edge cases), but also include browser tests
covering high level functionality.
- Ensure that there are comments explaining what classes/methods are/do.
The "why" is often more important than the "what" in comments. Also
update any relevant docs (moving docs from wiki to brave-core if
necessary).
- Request security or other review (third-party libraries, rust code,
etc...) if applicable [security/privacy review is
needed](https://github.com/brave/brave-browser/wiki/Security-reviews)
[other review](https://github.com/brave/reviews/issues/new/choose)
Also see [adding third-party
libraries](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/docs/adding_to_third_party.md)
for general guidelines on using third party code
- Maks sure there is a
[ticket](https://github.com/brave/brave-browser/issues) for your issue
- Use Github [auto-closing
keywords](https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue)
in the PR description above
- Write a good [PR/commit
description](https://google.github.io/eng-practices/review/developer/cl-descriptions.html)
- Squash any review feedback or "fixup" commits before merge, so that
history is a record of what happened in the repo, not your PR
- Add appropriate labels (`QA/Yes` or `QA/No`; `release-notes/include`
or `release-notes/exclude`; `OS/...`) to the associated issue
- Checked the PR locally:
* `npm run test -- brave_browser_tests`, `npm run test --
brave_unit_tests`
[wiki](https://github.com/brave/brave-browser/wiki/Tests)
* `npm run presubmit`
[wiki](https://github.com/brave/brave-browser/wiki/Presubmit-checks),
`npm run gn_check`, `npm run tslint`
- Run `git rebase master` (if needed)
-->
2025-09-10 01:14:01 -04:00

241 lines
9.3 KiB
JSON

{
"name": "brave-core",
"version": "1.84.47",
"description": "Brave Core is a set of changes, APIs and scripts used for customizing Chromium to make Brave.",
"main": "index.js",
"scripts": {
"help": "node ./build/commands/scripts/commands.js --help",
"audit_deps": "node ./build/commands/scripts/audit.js -- --audit_dev_deps",
"cibuild": "node ./build/commands/scripts/commands.js cibuild",
"init": "cd ../../ && npm run --prefix src/brave sync -- --init",
"delete_string_translations": "node ./build/commands/scripts/commands.js delete_string_translations",
"create_dist": "node ./build/commands/scripts/commands.js build --target=create_dist",
"sync": "node ./build/commands/scripts/sync.js",
"gclient": "node ./build/commands/scripts/gclient.js",
"build": "node ./build/commands/scripts/commands.js build",
"build_chromium_release": "node ./build/commands/scripts/commands.js build_chromium_release",
"gn_check": "node ./build/commands/scripts/commands.js gn_check",
"versions": "node ./build/commands/scripts/commands.js versions",
"upload": "node ./build/commands/scripts/commands.js upload",
"update_patches": "node ./build/commands/scripts/commands.js update_patches",
"apply_patches": "node ./build/commands/scripts/commands.js apply_patches",
"start": "node ./build/commands/scripts/commands.js start",
"network-audit": "npm run test brave_network_audit_tests -- --ui-test-action-timeout=320000 --test-launcher-timeout=2200000",
"push_l10n": "node ./build/commands/scripts/commands.js push_l10n",
"pull_l10n": "node ./build/commands/scripts/commands.js pull_l10n",
"chromium_rebase_l10n": "node ./build/commands/scripts/commands.js chromium_rebase_l10n",
"presubmit": "node ./build/commands/scripts/commands.js presubmit",
"format": "node ./build/commands/scripts/format.js",
"mass_rename": "node ./build/commands/scripts/commands.js mass_rename",
"docs": "node ./build/commands/scripts/commands.js docs",
"test": "node ./build/commands/scripts/commands.js test",
"list_affected_tests": "node ./build/commands/scripts/commands.js list_affected_tests",
"test:scripts": "jest build/commands/lib build/commands/scripts",
"tslint": "npm run eslint",
"eslint": "eslint ./components ./build",
"pep8": "pycodestyle --max-line-length 120 -r script",
"web-ui-gen-grd": "node components/webpack/gen-webpack-grd",
"web-ui-gen-tsconfig": "node build/commands/scripts/genTsConfig",
"web-ui": "webpack --config components/webpack/webpack.config.js",
"build-storybook": "npm run build -- --target=brave:storybook && storybook build -c .storybook -o .storybook-out",
"storybook": "storybook dev",
"test-unit": "jest",
"test-unit:wallet": "jest --coverage=false components/brave_wallet_ui",
"test-python-scripts": "npm run pep8 && PYTHONPATH=./script python -m unittest discover -s ./script/test",
"update_symlink": "node ./build/commands/scripts/commands.js update_symlink",
"build_fuzzer": "node ./build/commands/scripts/commands.js build_fuzzer",
"fuzzer": "node ./build/commands/scripts/commands.js run_fuzzer",
"perf_tests": "node ./build/commands/scripts/commands.js run_perf_tests",
"gen_env": "node ./build/commands/scripts/genEnv.js",
"gen_gradle": "node ./build/commands/scripts/commands.js gen_gradle",
"ios_pack_js": "webpack --config ios/brave-ios/webpack.config.js",
"ios_bootstrap": "node ./build/commands/scripts/iosCommands.js ios_bootstrap",
"update_brave_tools_crates": "node ./build/commands/scripts/updateBraveToolsCrates.js",
"build_rust_toolchain_aux": "node ./build/commands/scripts/buildRustToolchainAux.js",
"update_wasm_resources": "node ./build/commands/scripts/updateWasmResources.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brave/brave-core.git"
},
"author": {
"name": "Brave Software <support@brave.com>"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/brave/brave-browser/issues"
},
"engines": {
"node": ">=24.0.0 <25.0.0",
"npm": ">=11.0.0"
},
"homepage": "https:/github.com/brave/brave-core#readme",
"config": {
"projects": {
"chrome": {
"dir": "src",
"tag": "140.0.7339.133",
"repository": {
"url": "https://github.com/brave/chromium"
}
},
"depot_tools": {
"dir": "vendor/depot_tools",
"repository": {
"url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
}
}
}
},
"devDependencies": {
"@storybook/addon-essentials": "8.3.5",
"@storybook/addon-knobs": "8.0.1",
"@storybook/csf-tools": "8.3.5",
"@storybook/manager-api": "8.3.5",
"@storybook/react": "8.3.5",
"@storybook/react-webpack5": "8.3.5",
"@storybook/theming": "8.3.5",
"@storybook/types": "8.3.5",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "15.0.6",
"@types/array-move": "2.0.0",
"@types/async": "3.2.20",
"@types/bs58": "4.0.4",
"@types/chrome": "0.0.241",
"@types/diff": "7.0.1",
"@types/dom-navigation": "1.0.3",
"@types/jest": "28.1.6",
"@types/qr-image": "3.2.5",
"@types/react": "18.2.75",
"@types/react-dom": "18.2.24",
"@types/react-redux": "7.1.25",
"@types/react-syntax-highlighter": "15.5.11",
"@types/react-virtualized-auto-sizer": "1.0.4",
"@types/react-window": "1.8.5",
"@types/recharts": "1.8.24",
"@types/redux-logger": "3.0.9",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "6.4.0",
"acorn": "8.0.5",
"browserify-zlib": "0.2.0",
"buffer": "6.0.3",
"chalk": "4.1.2",
"commander": "2.20.3",
"crypto-browserify": "3.12.0",
"css-loader": "5.2.7",
"csstype": "2.6.21",
"diff": "7.0.0",
"dotenv": "16.3.1",
"emptykit.css": "1.0.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-licenses": "1.0.2",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react-hooks": "4.6.0",
"ethereum-blockies": "github:brave/blockies#0880fa9867b7da039e6d6f143b8f6c57b9f9eb3b",
"ethereumjs-util": "7.0.9",
"file-loader": "6.2.0",
"font-awesome": "4.7.0",
"fork-ts-checker-webpack-plugin": "9.0.2",
"fs-extra": "8.1.0",
"https-browserify": "1.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-junit": "13.0.0",
"jsdom": "26.0.0",
"less": "3.13.1",
"less-loader": "11.1.3",
"log-update": "3.4.0",
"mkdirp": "0.5.6",
"mz": "2.7.0",
"os-browserify": "0.3.0",
"path-browserify": "1.0.1",
"prettier": "3.5.3",
"process": "0.11.10",
"querystring-es3": "0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "7.2.9",
"recharts": "2.12.4",
"redux": "4.1.0",
"sass-loader": "10.4.1",
"semver": "7.6.2",
"sinon": "7.5.0",
"storybook": "8.3.5",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"style-loader": "2.0.0",
"styled-components": "5.3.11",
"teamcity-service-messages": "0.1.14",
"terser": "5.16.2",
"timers-browserify": "2.0.12",
"ts-jest": "28.0.8",
"ts-loader": "9.5.2",
"tsx": "4.19.2",
"typesafe-actions": "2.2.0",
"typescript": "5.7.3",
"typescript-plugin-css-modules": "5.1.0",
"typescript-plugin-styled-components": "3.0.0",
"webpack": "5.97.1",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@brave/brave-ui": "0.40.6",
"@brave/leo": "github:brave/leo#21133d19bc0d7faf2ee99c14950267dac7fe47a7",
"@brave/leo-sf-symbols": "github:brave/leo-sf-symbols#17e29a0f1ffafdeefafc3015c687fc3f449401dc",
"@brave/wallet-standard-brave": "0.0.16",
"@dnd-kit/core": "6.0.5",
"@dnd-kit/sortable": "7.0.1",
"@glif/filecoin-wallet-provider": "3.0.15",
"@ledgerhq/hw-app-btc": "10.3.0",
"@ledgerhq/hw-app-eth": "6.42.8",
"@ledgerhq/hw-app-solana": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.29.0",
"@mozilla/readability": "^0.6.0",
"@reduxjs/toolkit": "1.8.6",
"@solana/web3.js": "1.98.2",
"@trezor/connect": "9.1.11",
"@trezor/connect-web": "9.1.11",
"@types/jszip": "^3.1.6",
"@types/react-router-dom": "^5.3.3",
"array-move": "^2.2.1",
"async": "^3.2.4",
"bignumber.js": "^9.0.2",
"core-js": "^3.9.1",
"darkreader": "^4.9.87",
"date-fns": "^2.15.0",
"jszip": "^3.8.0",
"page-metadata-parser": "^1.1.3",
"prettier-bytes": "^1.0.4",
"qr-image": "^3.2.0",
"react-json-view-lite": "^0.9.5",
"react-markdown": "9.0.1",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-syntax-highlighter": "15.5.0",
"react-virtualized-auto-sizer": "1.0.24",
"react-window": "^1.8.10",
"redux-act": "^1.8.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"remark-gfm": "4.0.1",
"throttleit": "^1.0.0",
"webext-redux": "^2.1.4"
},
"overrides": {
"@jest/transform": "npm:@brave/jest-transform@28.1.3",
"@zondax/ledger-filecoin": "2.0.4",
"axios": "1.8.2",
"elliptic": "6.6.1",
"esbuild": "0.25.0",
"prismjs": "1.30.0",
"tiny-secp256k1": "1.1.7"
}
}