@jpapini/webpack-config
Version:
Custom Webpack configuration for bundling projects.
102 lines • 2.59 kB
JSON
{
"name": "@jpapini/webpack-config",
"version": "2.6.2",
"description": "Custom Webpack configuration for bundling projects.",
"keywords": [
"jpapini",
"webpack-config",
"tools",
"webpack",
"bundler"
],
"homepage": "https://github.com/jpapini/shared-packages/tree/main/packages/webpack-config#readme",
"bugs": {
"url": "https://github.com/jpapini/shared-packages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpapini/shared-packages.git",
"directory": "packages/webpack-config"
},
"license": "MIT",
"author": "Julien Papini <julien.papini@gmail.com> (https://github.com/jpapini)",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
"@tailwindcss/postcss": "4.0.17",
"autoprefixer": "10.4.21",
"css-loader": "7.1.2",
"dotenv": "16.4.7",
"html-webpack-plugin": "5.6.3",
"memoize-one": "6.0.0",
"mini-css-extract-plugin": "2.9.2",
"postcss": "8.5.3",
"postcss-loader": "8.1.1",
"run-script-webpack-plugin": "0.2.2",
"swc-loader": "0.2.6",
"tailwindcss": "4.0.17",
"ts-loader": "9.5.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"url-loader": "4.1.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-merge": "6.0.1",
"webpack-node-externals": "3.0.0",
"@jpapini/logger": "1.5.3"
},
"devDependencies": {
"@swc/core": "1.11.13",
"@swc/types": "0.1.20",
"@types/webpack": "5.28.5",
"@types/webpack-bundle-analyzer": "4.7.0",
"@types/webpack-node-externals": "3.0.4",
"npm-run-all2": "7.0.2",
"webpack": "5.98.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
},
"peerDependencies": {
"@swc/core": "1",
"webpack": "5",
"webpack-cli": "6",
"webpack-dev-server": "5"
},
"peerDependenciesMeta": {
"@swc/core": {
"optional": true
}
},
"engines": {
"node": "22",
"pnpm": "10"
},
"volta": {
"node": "22.14.0",
"pnpm": "10.7.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf .turbo dist node_modules/.cache",
"reset": "pnpm run clean; rimraf node_modules",
"typecheck": "tsc --noEmit --pretty",
"build": "tsup"
}
}