Files
nrwl--nx/packages/vue/package.json
T
2026-07-13 12:38:36 +08:00

116 lines
2.8 KiB
JSON

{
"name": "@nx/vue",
"version": "0.0.1",
"private": false,
"description": "The Vue plugin for Nx contains executors and generators for managing Vue applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/vue"
},
"keywords": [
"Monorepo",
"Vue",
"Web",
"CLI",
"Front-end"
],
"main": "./dist/index.js",
"type": "commonjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo",
"migrations.json",
"executors.json",
"generators.json"
],
"typesVersions": {
"*": {
"tailwind": [
"dist/tailwind.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",
"nx-migrations": {
"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",
"./tailwind": {
"@nx/nx-source": "./tailwind.ts",
"types": "./dist/tailwind.d.ts",
"default": "./dist/tailwind.js"
}
},
"dependencies": {
"@nx/devkit": "workspace:*",
"@nx/eslint": "workspace:*",
"@nx/js": "workspace:*",
"@nx/vite": "workspace:*",
"@nx/vitest": "workspace:*",
"@nx/web": "workspace:*",
"picomatch": "catalog:",
"tslib": "catalog:typescript"
},
"devDependencies": {
"nx": "workspace:*"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@nx/cypress": "workspace:*",
"@nx/playwright": "workspace:*",
"@nx/rsbuild": "workspace:*",
"@nx/storybook": "workspace:*",
"vue": "^3.0.0",
"vue-router": "^4.0.0",
"vue-tsc": "^2.0.0",
"@vitejs/plugin-vue": "^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"@nx/cypress": {
"optional": true
},
"@nx/playwright": {
"optional": true
},
"@nx/rsbuild": {
"optional": true
},
"@nx/storybook": {
"optional": true
},
"vue": {
"optional": true
},
"vue-router": {
"optional": true
},
"vue-tsc": {
"optional": true
},
"@vitejs/plugin-vue": {
"optional": true
}
}
}