Files
2026-07-13 12:38:36 +08:00

147 lines
3.8 KiB
JSON

{
"name": "@nx/webpack",
"version": "0.0.1",
"private": false,
"type": "commonjs",
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo",
"migrations.json",
"executors.json",
"generators.json"
],
"description": "The Nx Plugin for Webpack contains executors and generators that support building applications using Webpack.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/webpack"
},
"keywords": [
"Monorepo",
"Webpack",
"Web",
"CLI",
"Front-end"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"app-plugin": [
"dist/app-plugin.d.ts"
],
"plugin": [
"dist/plugin.d.ts"
],
"tsconfig-paths-plugin": [
"dist/tsconfig-paths-plugin.d.ts"
],
"internal": [
"dist/internal.d.ts"
]
}
},
"author": "Victor Savkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"generators": "./generators.json",
"executors": "./executors.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json",
"supportsOptionalMigrations": true
},
"exports": {
".": {
"@nx/nx-source": "./index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./migrations.json": "./migrations.json",
"./generators.json": "./generators.json",
"./executors.json": "./executors.json",
"./app-plugin": {
"@nx/nx-source": "./app-plugin.ts",
"types": "./dist/app-plugin.d.ts",
"default": "./dist/app-plugin.js"
},
"./plugin": {
"@nx/nx-source": "./plugin.ts",
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
},
"./tsconfig-paths-plugin": {
"@nx/nx-source": "./tsconfig-paths-plugin.ts",
"types": "./dist/tsconfig-paths-plugin.d.ts",
"default": "./dist/tsconfig-paths-plugin.js"
},
"./internal": {
"@nx/nx-source": "./internal.ts",
"types": "./dist/internal.d.ts",
"default": "./dist/internal.js"
}
},
"dependencies": {
"@babel/core": "catalog:",
"@phenomnomnominal/tsquery": "catalog:typescript",
"ajv": "catalog:",
"autoprefixer": "catalog:css",
"babel-loader": "^9.1.2",
"browserslist": "^4.26.0",
"picocolors": "catalog:",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^8.0.0",
"fork-ts-checker-webpack-plugin": "9.1.0",
"less": ">=4.1.3 <4.6.0",
"less-loader": "catalog:css",
"license-webpack-plugin": "^4.0.2",
"loader-utils": "^2.0.3",
"mini-css-extract-plugin": "~2.4.7",
"parse5": "4.0.0",
"postcss": "catalog:css",
"postcss-import": "~14.1.0",
"postcss-loader": "catalog:css",
"rxjs": "catalog:",
"sass": "catalog:css",
"sass-embedded": "catalog:css",
"sass-loader": "catalog:css",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.5.7",
"tsconfig-paths-webpack-plugin": "4.2.0",
"tslib": "catalog:typescript",
"webpack-node-externals": "^3.0.0",
"webpack-subresource-integrity": "^5.1.0",
"@nx/devkit": "workspace:*",
"@nx/js": "workspace:*"
},
"peerDependencies": {
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0 || ^6.0.0 || ^7.0.0",
"webpack-dev-server": "^5.0.0"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
},
"webpack-cli": {
"optional": true
},
"webpack-dev-server": {
"optional": true
}
},
"devDependencies": {
"nx": "workspace:*"
},
"publishConfig": {
"access": "public"
}
}