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

73 lines
1.6 KiB
JSON

{
"name": "@nx/express",
"version": "0.0.1",
"private": false,
"description": "The Nx Plugin for Express contains executors and generators for allowing your workspace to create powerful Express Node applications and APIs.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/express"
},
"keywords": [
"Monorepo",
"Node",
"Express",
"Jest",
"Cypress",
"CLI",
"Backend"
],
"main": "./dist/index.js",
"type": "commonjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo",
"migrations.json",
"generators.json"
],
"author": "Victor Savkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"generators": "./generators.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json",
"supportsOptionalMigrations": true
},
"dependencies": {
"@nx/devkit": "workspace:*",
"@nx/js": "workspace:*",
"@nx/node": "workspace:*",
"semver": "catalog:",
"tslib": "catalog:typescript"
},
"peerDependencies": {
"express": ">=4.0.0 <6.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"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"
},
"typesVersions": {
"*": {}
}
}