webpack/package.json

206 lines
8.7 KiB
JSON
Raw Normal View History

2012-03-10 20:11:23 +08:00
{
"name": "webpack",
2025-10-08 00:26:11 +08:00
"version": "5.102.1",
"description": "Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.",
"homepage": "https://github.com/webpack/webpack",
"bugs": "https://github.com/webpack/webpack/issues",
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
2018-01-07 00:44:20 +08:00
"license": "MIT",
"author": "Tobias Koppers @sokra",
"main": "lib/index.js",
"types": "types.d.ts",
"bin": {
"webpack": "bin/webpack.js"
},
"files": [
"lib/",
"bin/",
"hot/",
"schemas/",
"SECURITY.md",
"module.d.ts",
"types.d.ts"
],
"scripts": {
"prepare": "husky",
"setup": "node ./setup/setup.js",
"prelint": "yarn setup",
"lint": "yarn lint:code && yarn lint:special && yarn lint:types && yarn lint:types-test && yarn lint:types-module-test && yarn lint:yarn && yarn fmt:check && yarn lint:spellcheck",
"lint:code": "node node_modules/eslint/bin/eslint.js --cache .",
"lint:special": "node node_modules/tooling/lockfile-lint && node node_modules/tooling/schemas-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-schemas && node tooling/generate-runtime-code.js && node tooling/generate-wasm-code.js && node node_modules/tooling/compile-to-definitions && node node_modules/tooling/precompile-schemas && node node_modules/tooling/generate-types --no-template-literals",
"lint:types": "tsc",
"lint:types-test": "tsc -p tsconfig.types.test.json",
"lint:types-module-test": "tsc -p tsconfig.module.test.json",
"lint:yarn": "yarn-deduplicate --fail --list -s highest yarn.lock",
"lint:spellcheck": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"report:types": "rimraf coverage && yarn cover:types && yarn cover:report && open-cli coverage/lcov-report/index.html",
"validate:types": "tsc -p tsconfig.validation.json",
"fmt": "yarn fmt:base --log-level warn --write",
"fmt:check": "yarn fmt:base --check",
"fmt:base": "node node_modules/prettier/bin/prettier.cjs --cache --ignore-unknown .",
"fix": "yarn fix:code && yarn fix:yarn && yarn fix:special && yarn fmt",
"fix:code": "yarn lint:code --fix",
"fix:yarn": "yarn-deduplicate -s highest yarn.lock",
"fix:special": "node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-schemas --write && node tooling/generate-runtime-code.js --write && node tooling/generate-wasm-code.js --write && node node_modules/tooling/compile-to-definitions --write && node node_modules/tooling/precompile-schemas --write && node node_modules/tooling/generate-types --no-template-literals --write",
"build:examples": "cd examples && node buildAll.js",
"benchmark": "node --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation --hash-seed=1 --random-seed=1 --no-opt --predictable --predictable-gc-schedule --interpreted-frames-native-stack --allow-natives-syntax --expose-gc --no-concurrent-sweeping ./test/BenchmarkTestCases.benchmark.mjs",
"pretest": "yarn lint",
"test": "yarn test:base",
"test:update-snapshots": "yarn test:base -u",
"test:basic": "yarn test:base --testMatch \"<rootDir>/test/*.basictest.js\"",
"test:unit": "yarn test:base --testMatch \"<rootDir>/test/*.unittest.js\"",
"test:integration": "yarn test:base --testMatch \"<rootDir>/test/*.{basictest,longtest,test}.js\"",
"test:base": "node --expose-gc --max-old-space-size=4096 --experimental-vm-modules --trace-deprecation node_modules/jest-cli/bin/jest --logHeapUsage",
"cover": "yarn cover:all && yarn cover:report",
"cover:clean": "rimraf .nyc_output coverage",
"cover:all": "yarn cover:base --coverage",
"cover:unit": "yarn cover:base --testMatch \"<rootDir>/test/*.unittest.js\" --coverage",
"cover:basic": "yarn cover:base --testMatch \"<rootDir>/test/*.basictest.js\" --coverage",
"cover:integration": "yarn cover:base --testMatch \"<rootDir>/test/*.{basictest,longtest,test}.js\" --coverage",
"cover:integration:a": "yarn cover:base --testMatch \"<rootDir>/test/*.{basictest,test}.js\" --coverage",
"cover:integration:b": "yarn cover:base --testMatch \"<rootDir>/test/*.longtest.js\" --coverage",
"cover:base": "node --expose-gc --max-old-space-size=4096 --experimental-vm-modules node_modules/jest-cli/bin/jest --logHeapUsage",
"cover:types": "node node_modules/tooling/type-coverage",
"cover:merge": "yarn mkdirp .nyc_output && nyc merge .nyc_output coverage/coverage-nyc.json && rimraf .nyc_output",
"cover:report": "nyc report --reporter=lcov --reporter=text -t coverage"
},
"lint-staged": {
"*.{js,cjs,mjs}": [
"node node_modules/eslint/bin/eslint.js --cache --fix"
],
"*": [
"node node_modules/prettier/bin/prettier.cjs --cache --write --ignore-unknown",
"cspell --cache --no-must-find-files"
]
},
"dependencies": {
"@types/eslint-scope": "^3.7.7",
2025-06-24 22:43:58 +08:00
"@types/estree": "^1.0.8",
"@types/json-schema": "^7.0.15",
2024-11-07 21:24:38 +08:00
"@webassemblyjs/ast": "^1.14.1",
"@webassemblyjs/wasm-edit": "^1.14.1",
"@webassemblyjs/wasm-parser": "^1.14.1",
2025-06-27 01:10:49 +08:00
"acorn": "^8.15.0",
"acorn-import-phases": "^1.0.3",
"browserslist": "^4.26.3",
"chrome-trace-event": "^1.0.2",
2025-08-06 21:03:51 +08:00
"enhanced-resolve": "^5.17.3",
2023-04-08 03:52:23 +08:00
"es-module-lexer": "^1.2.1",
"eslint-scope": "5.1.1",
2020-08-12 01:55:44 +08:00
"events": "^3.2.0",
"glob-to-regexp": "^0.4.1",
2024-03-11 22:10:47 +08:00
"graceful-fs": "^4.2.11",
"json-parse-even-better-errors": "^2.3.1",
"loader-runner": "^4.2.0",
2020-08-12 01:55:44 +08:00
"mime-types": "^2.1.27",
"neo-async": "^2.6.2",
2025-10-02 23:26:16 +08:00
"schema-utils": "^4.3.3",
"tapable": "^2.3.0",
2024-12-13 22:03:44 +08:00
"terser-webpack-plugin": "^5.3.11",
2025-09-08 19:57:11 +08:00
"watchpack": "^2.4.4",
2025-06-24 22:43:58 +08:00
"webpack-sources": "^3.3.3"
},
"devDependencies": {
2025-05-02 00:16:09 +08:00
"@babel/core": "^7.27.1",
"@babel/preset-react": "^7.27.1",
2025-10-04 18:26:48 +08:00
"@codspeed/core": "^5.0.1",
2025-09-30 17:55:30 +08:00
"@eslint/js": "^9.36.0",
"@eslint/markdown": "^7.3.0",
"@stylistic/eslint-plugin": "^5.4.0",
2024-02-22 22:20:17 +08:00
"@types/glob-to-regexp": "^0.4.4",
2025-06-12 20:17:12 +08:00
"@types/graceful-fs": "^4.1.9",
2025-06-24 22:43:58 +08:00
"@types/jest": "^30.0.0",
"@types/mime-types": "^2.1.4",
2025-09-30 17:55:30 +08:00
"@types/node": "^24.5.2",
2025-05-01 22:36:51 +08:00
"@types/xxhashjs": "^0.2.4",
2025-09-30 17:55:30 +08:00
"assemblyscript": "^0.28.8",
chore(deps): bump the dependencies group across 1 directory with 12 updates Bumps the dependencies group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [acorn](https://github.com/acornjs/acorn) | `8.14.0` | `8.14.1` | | [terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) | `5.3.11` | `5.3.14` | | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.26.8` | `7.26.10` | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.21.0` | `9.22.0` | | [assemblyscript](https://github.com/AssemblyScript/assemblyscript) | `0.27.34` | `0.27.35` | | [babel-loader](https://github.com/babel/babel-loader) | `9.2.1` | `10.0.0` | | [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.40.0` | `3.41.0` | | [eslint](https://github.com/eslint/eslint) | `9.21.0` | `9.22.0` | | [globals](https://github.com/sindresorhus/globals) | `15.15.0` | `16.0.0` | | [lint-staged](https://github.com/lint-staged/lint-staged) | `15.4.3` | `15.5.0` | | [prettier](https://github.com/prettier/prettier) | `3.5.1` | `3.5.3` | | [terser](https://github.com/terser/terser) | `5.38.1` | `5.39.0` | Updates `acorn` from 8.14.0 to 8.14.1 - [Commits](https://github.com/acornjs/acorn/compare/8.14.0...8.14.1) Updates `terser-webpack-plugin` from 5.3.11 to 5.3.14 - [Release notes](https://github.com/webpack-contrib/terser-webpack-plugin/releases) - [Changelog](https://github.com/webpack-contrib/terser-webpack-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/terser-webpack-plugin/compare/v5.3.11...v5.3.14) Updates `@babel/core` from 7.26.8 to 7.26.10 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-core) Updates `@eslint/js` from 9.21.0 to 9.22.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/commits/v9.22.0/packages/js) Updates `assemblyscript` from 0.27.34 to 0.27.35 - [Release notes](https://github.com/AssemblyScript/assemblyscript/releases) - [Commits](https://github.com/AssemblyScript/assemblyscript/compare/v0.27.34...v0.27.35) Updates `babel-loader` from 9.2.1 to 10.0.0 - [Release notes](https://github.com/babel/babel-loader/releases) - [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel-loader/compare/v9.2.1...v10.0.0) Updates `core-js` from 3.40.0 to 3.41.0 - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/commits/v3.41.0/packages/core-js) Updates `eslint` from 9.21.0 to 9.22.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.21.0...v9.22.0) Updates `globals` from 15.15.0 to 16.0.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v15.15.0...v16.0.0) Updates `lint-staged` from 15.4.3 to 15.5.0 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v15.4.3...v15.5.0) Updates `prettier` from 3.5.1 to 3.5.3 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.5.1...3.5.3) Updates `terser` from 5.38.1 to 5.39.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.38.1...v5.39.0) --- updated-dependencies: - dependency-name: acorn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: terser-webpack-plugin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@eslint/js" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: assemblyscript dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: babel-loader dependency-type: direct:development update-type: version-update:semver-major dependency-group: dependencies - dependency-name: core-js dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: globals dependency-type: direct:development update-type: version-update:semver-major dependency-group: dependencies - dependency-name: lint-staged dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: terser dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2025-03-14 09:52:25 +08:00
"babel-loader": "^10.0.0",
2020-08-12 01:55:44 +08:00
"bundle-loader": "^0.5.6",
2024-07-24 20:32:01 +08:00
"coffee-loader": "^5.0.0",
2020-08-12 01:55:44 +08:00
"coffeescript": "^2.5.1",
2025-06-24 22:43:58 +08:00
"core-js": "^3.43.0",
"cspell": "^9.1.1",
2024-07-24 20:32:01 +08:00
"css-loader": "^7.1.2",
chore(deps-dev): bump the dependencies group across 1 directory with 4 updates Bumps the dependencies group with 4 updates in the / directory: [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [babel-loader](https://github.com/babel/babel-loader) and [date-fns](https://github.com/date-fns/date-fns). Updates `@types/jest` from 29.5.12 to 29.5.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Updates `@types/node` from 22.5.4 to 22.5.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `babel-loader` from 9.1.3 to 9.2.1 - [Release notes](https://github.com/babel/babel-loader/releases) - [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel-loader/compare/v9.1.3...v9.2.1) Updates `date-fns` from 3.6.0 to 4.0.0 - [Release notes](https://github.com/date-fns/date-fns/releases) - [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md) - [Commits](https://github.com/date-fns/date-fns/compare/v3.6.0...v4.0.0) --- updated-dependencies: - dependency-name: "@types/jest" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: babel-loader dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: date-fns dependency-type: direct:development update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2024-09-17 10:08:40 +08:00
"date-fns": "^4.0.0",
"es5-ext": "^0.10.53",
2020-08-12 01:55:44 +08:00
"es6-promise-polyfill": "^1.2.0",
2025-09-30 17:55:30 +08:00
"eslint": "^9.36.0",
2025-03-07 23:32:55 +08:00
"eslint-config-prettier": "^10.1.1",
2025-07-26 00:37:45 +08:00
"eslint-config-webpack": "^4.5.1",
"eslint-plugin-import": "^2.32.0",
2025-06-24 22:43:58 +08:00
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsdoc": "^51.2.3",
2025-09-30 17:55:30 +08:00
"eslint-plugin-n": "^17.23.1",
2025-06-24 22:43:58 +08:00
"eslint-plugin-prettier": "^5.5.0",
chore(deps-dev): bump the dependencies group with 5 updates (#19885) Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.3` | `7.28.4` | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.34.0` | `9.35.0` | | [assemblyscript](https://github.com/AssemblyScript/assemblyscript) | `0.28.5` | `0.28.6` | | [eslint](https://github.com/eslint/eslint) | `9.34.0` | `9.35.0` | | [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) | `60.0.0` | `61.0.1` | Updates `@babel/core` from 7.28.3 to 7.28.4 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.28.4/packages/babel-core) Updates `@eslint/js` from 9.34.0 to 9.35.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/commits/v9.35.0/packages/js) Updates `assemblyscript` from 0.28.5 to 0.28.6 - [Release notes](https://github.com/AssemblyScript/assemblyscript/releases) - [Commits](https://github.com/AssemblyScript/assemblyscript/compare/v0.28.5...v0.28.6) Updates `eslint` from 9.34.0 to 9.35.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.34.0...v9.35.0) Updates `eslint-plugin-unicorn` from 60.0.0 to 61.0.1 - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v60.0.0...v61.0.1) --- updated-dependencies: - dependency-name: "@babel/core" dependency-version: 7.28.4 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@eslint/js" dependency-version: 9.35.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: assemblyscript dependency-version: 0.28.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: eslint dependency-version: 9.35.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: eslint-plugin-unicorn dependency-version: 61.0.1 dependency-type: direct:development update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 20:03:06 +08:00
"eslint-plugin-unicorn": "^61.0.1",
"file-loader": "^6.0.0",
2024-03-12 01:22:43 +08:00
"fork-ts-checker-webpack-plugin": "^9.0.2",
chore(deps): bump the dependencies group across 1 directory with 12 updates Bumps the dependencies group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [acorn](https://github.com/acornjs/acorn) | `8.14.0` | `8.14.1` | | [terser-webpack-plugin](https://github.com/webpack-contrib/terser-webpack-plugin) | `5.3.11` | `5.3.14` | | [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.26.8` | `7.26.10` | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.21.0` | `9.22.0` | | [assemblyscript](https://github.com/AssemblyScript/assemblyscript) | `0.27.34` | `0.27.35` | | [babel-loader](https://github.com/babel/babel-loader) | `9.2.1` | `10.0.0` | | [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js) | `3.40.0` | `3.41.0` | | [eslint](https://github.com/eslint/eslint) | `9.21.0` | `9.22.0` | | [globals](https://github.com/sindresorhus/globals) | `15.15.0` | `16.0.0` | | [lint-staged](https://github.com/lint-staged/lint-staged) | `15.4.3` | `15.5.0` | | [prettier](https://github.com/prettier/prettier) | `3.5.1` | `3.5.3` | | [terser](https://github.com/terser/terser) | `5.38.1` | `5.39.0` | Updates `acorn` from 8.14.0 to 8.14.1 - [Commits](https://github.com/acornjs/acorn/compare/8.14.0...8.14.1) Updates `terser-webpack-plugin` from 5.3.11 to 5.3.14 - [Release notes](https://github.com/webpack-contrib/terser-webpack-plugin/releases) - [Changelog](https://github.com/webpack-contrib/terser-webpack-plugin/blob/master/CHANGELOG.md) - [Commits](https://github.com/webpack-contrib/terser-webpack-plugin/compare/v5.3.11...v5.3.14) Updates `@babel/core` from 7.26.8 to 7.26.10 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.26.10/packages/babel-core) Updates `@eslint/js` from 9.21.0 to 9.22.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/commits/v9.22.0/packages/js) Updates `assemblyscript` from 0.27.34 to 0.27.35 - [Release notes](https://github.com/AssemblyScript/assemblyscript/releases) - [Commits](https://github.com/AssemblyScript/assemblyscript/compare/v0.27.34...v0.27.35) Updates `babel-loader` from 9.2.1 to 10.0.0 - [Release notes](https://github.com/babel/babel-loader/releases) - [Changelog](https://github.com/babel/babel-loader/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel-loader/compare/v9.2.1...v10.0.0) Updates `core-js` from 3.40.0 to 3.41.0 - [Release notes](https://github.com/zloirock/core-js/releases) - [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/zloirock/core-js/commits/v3.41.0/packages/core-js) Updates `eslint` from 9.21.0 to 9.22.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.21.0...v9.22.0) Updates `globals` from 15.15.0 to 16.0.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v15.15.0...v16.0.0) Updates `lint-staged` from 15.4.3 to 15.5.0 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v15.4.3...v15.5.0) Updates `prettier` from 3.5.1 to 3.5.3 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.5.1...3.5.3) Updates `terser` from 5.38.1 to 5.39.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.38.1...v5.39.0) --- updated-dependencies: - dependency-name: acorn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: terser-webpack-plugin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@eslint/js" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: assemblyscript dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: babel-loader dependency-type: direct:development update-type: version-update:semver-major dependency-group: dependencies - dependency-name: core-js dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: globals dependency-type: direct:development update-type: version-update:semver-major dependency-group: dependencies - dependency-name: lint-staged dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: terser dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2025-03-14 09:52:25 +08:00
"globals": "^16.0.0",
"hash-wasm": "^4.9.0",
2024-03-13 21:36:17 +08:00
"husky": "^9.0.11",
2016-12-29 04:31:33 +08:00
"istanbul": "^0.4.5",
2025-09-30 17:55:30 +08:00
"jest": "^30.2.0",
"jest-circus": "^30.2.0",
"jest-cli": "^30.2.0",
"jest-diff": "^30.2.0",
"jest-environment-node": "^30.2.0",
2023-04-17 00:56:55 +08:00
"jest-junit": "^16.0.0",
"json-loader": "^0.5.7",
2020-08-12 01:55:44 +08:00
"json5": "^2.1.3",
2023-04-08 07:15:41 +08:00
"less": "^4.0.0",
2024-07-24 20:32:01 +08:00
"less-loader": "^12.2.0",
2025-06-24 22:43:58 +08:00
"lint-staged": "^16.1.2",
2020-08-12 01:55:44 +08:00
"lodash": "^4.17.19",
"lodash-es": "^4.17.15",
2024-10-14 11:02:08 +08:00
"memfs": "^4.14.0",
2024-07-24 20:32:01 +08:00
"mini-css-extract-plugin": "^2.9.0",
2020-08-12 01:55:44 +08:00
"mini-svg-data-uri": "^1.2.3",
"node-gyp": "^11.2.0",
2024-10-14 11:02:08 +08:00
"nyc": "^17.1.0",
2024-03-13 21:36:17 +08:00
"open-cli": "^8.0.0",
2025-06-24 22:43:58 +08:00
"prettier": "^3.6.0",
2024-02-22 22:20:17 +08:00
"prettier-2": "npm:prettier@^2",
2025-07-26 00:37:45 +08:00
"pretty-format": "^30.0.5",
2024-06-05 11:10:20 +08:00
"pug": "^3.0.3",
2018-05-10 15:13:17 +08:00
"pug-loader": "^2.4.0",
"raw-loader": "^4.0.1",
2025-02-11 04:18:43 +08:00
"react": "^19.0.0",
"react-dom": "^19.0.0",
2023-04-08 02:47:38 +08:00
"rimraf": "^3.0.2",
2020-08-12 01:55:44 +08:00
"script-loader": "^0.7.2",
2025-06-24 22:43:58 +08:00
"simple-git": "^3.28.0",
2020-03-03 22:24:13 +08:00
"strip-ansi": "^6.0.0",
2024-07-24 20:32:01 +08:00
"style-loader": "^4.0.0",
2025-06-24 22:43:58 +08:00
"terser": "^5.43.1",
chore(deps-dev): bump the dependencies group across 1 directory with 6 updates (#19871) Bumps the dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `30.1.2` | `30.1.3` | | [jest-circus](https://github.com/jestjs/jest/tree/HEAD/packages/jest-circus) | `30.1.2` | `30.1.3` | | [lint-staged](https://github.com/lint-staged/lint-staged) | `16.1.5` | `16.1.6` | | [terser](https://github.com/terser/terser) | `5.43.1` | `5.44.0` | | [three](https://github.com/mrdoob/three.js) | `0.179.1` | `0.180.0` | Updates `jest` from 30.1.2 to 30.1.3 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.1.3/packages/jest) Updates `jest-circus` from 30.1.2 to 30.1.3 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.1.3/packages/jest-circus) Updates `jest-cli` from 30.1.2 to 30.1.3 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.1.3/packages/jest-cli) Updates `lint-staged` from 16.1.5 to 16.1.6 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v16.1.5...v16.1.6) Updates `terser` from 5.43.1 to 5.44.0 - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.43.1...v5.44.0) Updates `three` from 0.179.1 to 0.180.0 - [Release notes](https://github.com/mrdoob/three.js/releases) - [Commits](https://github.com/mrdoob/three.js/commits) --- updated-dependencies: - dependency-name: jest dependency-version: 30.1.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: jest-circus dependency-version: 30.1.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: jest-cli dependency-version: 30.1.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: lint-staged dependency-version: 16.1.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: terser dependency-version: 5.44.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: three dependency-version: 0.180.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 19:36:20 +08:00
"three": "^0.180.0",
"tinybench": "^5.0.0",
2019-11-29 01:12:11 +08:00
"toml": "^3.0.0",
"tooling": "webpack/tooling#v1.24.3",
2024-03-12 17:45:14 +08:00
"ts-loader": "^9.5.1",
2025-10-02 23:26:16 +08:00
"typescript": "^5.9.3",
"url-loader": "^4.1.0",
2024-03-13 21:36:17 +08:00
"wast-loader": "^1.12.1",
2020-02-02 07:42:26 +08:00
"webassembly-feature": "1.3.0",
2025-02-11 04:18:43 +08:00
"webpack-cli": "^6.0.1",
2020-08-12 01:55:44 +08:00
"xxhashjs": "^0.2.2",
"yamljs": "^0.3.0",
2023-04-07 20:36:13 +08:00
"yarn-deduplicate": "^6.0.1"
},
"peerDependenciesMeta": {
"webpack-cli": {
"optional": true
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
2019-10-21 21:07:11 +08:00
"node": ">=10.13.0"
}
2022-01-12 16:23:00 +08:00
}