nx/packages/rsbuild/package.json
Colum Ferry ee91b63b42
feat(rsbuild): add inferred targets plugin (#29192)
## Current Behavior
There is currently no way to execute Rsbuild targets via Nx.

## Expected Behavior
Add a `@nx/rsbuild/plugin` to infer targets based on the
`rsbuild.config` files in the workspace.
Also add an `init` generator to allow for `nx init` in existing rsbuild
projects.
2024-12-10 12:36:15 -05:00

43 lines
1002 B
JSON

{
"name": "@nx/rsbuild",
"description": "The Nx Plugin for Rsbuild contains an Nx plugin, executors and utilities that support building applications using Rsbuild.",
"version": "0.0.1",
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/rsbuild"
},
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"keywords": [
"Monorepo",
"Rspack",
"Webpack",
"Bundling",
"Module Federation",
"Rsbuild"
],
"author": "Colum Ferry",
"license": "MIT",
"homepage": "https://nx.dev",
"main": "index.js",
"generators": "./generators.json",
"executors": "./executors.json",
"dependencies": {
"tslib": "^2.3.0",
"@nx/devkit": "file:../devkit",
"@nx/js": "file:../js",
"@rsbuild/core": "1.1.8",
"minimatch": "9.0.3"
},
"peerDependencies": {},
"nx-migrations": {
"migrations": "./migrations.json"
}
}