90 lines
2.2 KiB
JSON
90 lines
2.2 KiB
JSON
{
|
|
"name": "@nx/angular-rspack-compiler",
|
|
"private": false,
|
|
"version": "0.0.1",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Compilation utilities for Angular with Rspack and Rsbuild.",
|
|
"author": "Victor Savkin",
|
|
"license": "MIT",
|
|
"homepage": "https://nx.dev",
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/angular-rspack-compiler"
|
|
},
|
|
"keywords": [
|
|
"angular",
|
|
"rspack",
|
|
"rsbuild",
|
|
"compiler"
|
|
],
|
|
"scripts": {
|
|
"postinstall": "node ./patch/patch-angular-build.js"
|
|
},
|
|
"type": "commonjs",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"module": "./dist/index.js",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.lib.tsbuildinfo",
|
|
"patch"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"@nx/nx-source": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@nx/devkit": "workspace:*",
|
|
"sass-embedded": "catalog:css",
|
|
"semver": "catalog:",
|
|
"ts-morph": "catalog:typescript",
|
|
"tslib": "catalog:typescript",
|
|
"typescript": "catalog:typescript"
|
|
},
|
|
"devDependencies": {
|
|
"jsonc-eslint-parser": "^2.4.0",
|
|
"vitest": "catalog:vite",
|
|
"memfs": "^4.17.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/build": "catalog:angular-supported-versions",
|
|
"@angular/compiler-cli": "catalog:angular-supported-versions",
|
|
"@rsbuild/core": ">=1.0.5 <2.0.0"
|
|
},
|
|
"nx": {
|
|
"sourceRoot": "packages/angular-rspack-compiler/src",
|
|
"projectType": "library",
|
|
"name": "angular-rspack-compiler",
|
|
"targets": {
|
|
"build": {
|
|
"command": "node ./scripts/copy-readme.js angular-rspack-compiler packages/angular-rspack-compiler/readme-template.md packages/angular-rspack-compiler/README.md",
|
|
"inputs": [
|
|
"copyReadme"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/README.md"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"^build-native"
|
|
],
|
|
"options": {
|
|
"args": [
|
|
"--passWithNoTests"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|