121 lines
2.9 KiB
JSON
121 lines
2.9 KiB
JSON
{
|
|
"name": "@nx/web",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"type": "commonjs",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"migrations.json",
|
|
"executors.json",
|
|
"generators.json"
|
|
],
|
|
"description": "The Nx Plugin for Web Components contains generators for managing Web Component applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Playwright, Cypress, and Storybook.\n\n- Scaffolding for creating buildable libraries that can be published to npm.\n\n- Utilities for automatic workspace refactoring.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/web"
|
|
},
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Web",
|
|
"Jest",
|
|
"Cypress",
|
|
"CLI",
|
|
"Front-end"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"babel": [
|
|
"dist/babel.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",
|
|
"./babel": {
|
|
"@nx/nx-source": "./babel.ts",
|
|
"types": "./dist/babel.d.ts",
|
|
"default": "./dist/babel.js"
|
|
},
|
|
"./internal": {
|
|
"@nx/nx-source": "./internal.ts",
|
|
"types": "./dist/internal.d.ts",
|
|
"default": "./dist/internal.js"
|
|
},
|
|
"./typings/*.d.ts": {
|
|
"@nx/nx-source": "./typings/*.d.ts",
|
|
"default": "./dist/typings/*.d.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"detect-port": "^2.1.0",
|
|
"http-server": "catalog:",
|
|
"picocolors": "catalog:",
|
|
"tslib": "catalog:typescript",
|
|
"@nx/devkit": "workspace:*",
|
|
"@nx/js": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"nx": "workspace:*",
|
|
"@nx/vitest": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@nx/cypress": "workspace:*",
|
|
"@nx/eslint": "workspace:*",
|
|
"@nx/jest": "workspace:*",
|
|
"@nx/playwright": "workspace:*",
|
|
"@nx/vite": "workspace:*",
|
|
"@nx/webpack": "workspace:*"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@nx/cypress": {
|
|
"optional": true
|
|
},
|
|
"@nx/eslint": {
|
|
"optional": true
|
|
},
|
|
"@nx/jest": {
|
|
"optional": true
|
|
},
|
|
"@nx/playwright": {
|
|
"optional": true
|
|
},
|
|
"@nx/vite": {
|
|
"optional": true
|
|
},
|
|
"@nx/webpack": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|