2012-03-10 20:11:23 +08:00
{
2015-04-15 01:57:37 +08:00
"name" : "webpack" ,
2025-09-30 02:24:41 +08:00
"version" : "5.102.0" ,
2023-05-08 12:31:25 +08:00
"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." ,
2025-07-02 20:10:54 +08:00
"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" ,
2025-07-02 20:10:54 +08:00
"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"
]
} ,
2015-04-15 01:57:37 +08:00
"dependencies" : {
2024-11-01 18:16:32 +08:00
"@types/eslint-scope" : "^3.7.7" ,
2025-06-24 22:43:58 +08:00
"@types/estree" : "^1.0.8" ,
2025-04-23 07:34:59 +08:00
"@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" ,
2025-07-08 20:49:46 +08:00
"acorn-import-phases" : "^1.0.3" ,
2025-10-02 01:12:27 +08:00
"browserslist" : "^4.26.3" ,
2019-08-01 22:51:20 +08:00
"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" ,
2021-05-19 18:55:00 +08:00
"eslint-scope" : "5.1.1" ,
2020-08-12 01:55:44 +08:00
"events" : "^3.2.0" ,
2019-05-17 03:12:59 +08:00
"glob-to-regexp" : "^0.4.1" ,
2024-03-11 22:10:47 +08:00
"graceful-fs" : "^4.2.11" ,
2022-04-16 20:01:53 +08:00
"json-parse-even-better-errors" : "^2.3.1" ,
2021-01-07 22:37:19 +08:00
"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"
2015-04-15 01:57:37 +08:00
} ,
"devDependencies" : {
2025-05-02 00:16:09 +08:00
"@babel/core" : "^7.27.1" ,
"@babel/preset-react" : "^7.27.1" ,
2025-07-24 04:48:44 +08:00
"@codspeed/core" : "^4.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" ,
2024-01-13 21:51:07 +08:00
"@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" ,
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" ,
2024-09-17 10:08:40 +08:00
"date-fns" : "^4.0.0" ,
2020-09-30 15:51:16 +08:00
"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" ,
2025-07-02 20:10:54 +08:00
"eslint-plugin-import" : "^2.32.0" ,
2025-06-24 22:43:58 +08:00
"eslint-plugin-jest" : "^29.0.1" ,
2025-07-02 20:10:54 +08:00
"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" ,
2025-09-08 20:03:06 +08:00
"eslint-plugin-unicorn" : "^61.0.1" ,
2020-05-23 21:01:11 +08:00
"file-loader" : "^6.0.0" ,
2024-03-12 01:22:43 +08:00
"fork-ts-checker-webpack-plugin" : "^9.0.2" ,
2025-03-14 09:52:25 +08:00
"globals" : "^16.0.0" ,
2021-09-23 18:55:18 +08:00
"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" ,
2017-11-12 01:48:29 +08:00
"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" ,
2019-12-17 02:48:27 +08:00
"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" ,
2025-04-29 02:11:48 +08:00
"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" ,
2020-05-23 21:01:11 +08:00
"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" ,
2025-09-04 19:36:20 +08:00
"three" : "^0.180.0" ,
2025-08-18 20:28:37 +08:00
"tinybench" : "^5.0.0" ,
2019-11-29 01:12:11 +08:00
"toml" : "^3.0.0" ,
2025-07-11 19:14:26 +08:00
"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" ,
2020-05-23 21:01:11 +08:00
"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" ,
2020-05-20 13:59:41 +08:00
"yamljs" : "^0.3.0" ,
2023-04-07 20:36:13 +08:00
"yarn-deduplicate" : "^6.0.1"
2015-04-15 01:57:37 +08:00
} ,
2025-07-02 20:10:54 +08:00
"peerDependenciesMeta" : {
"webpack-cli" : {
"optional" : true
}
} ,
"packageManager" : "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" ,
2015-04-15 01:57:37 +08:00
"engines" : {
2019-10-21 21:07:11 +08:00
"node" : ">=10.13.0"
2025-07-02 20:10:54 +08:00
}
2022-01-12 16:23:00 +08:00
}