93 lines
2.3 KiB
JSON
93 lines
2.3 KiB
JSON
{
|
|
"name": "@nx/nuxt",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"description": "The Nuxt plugin for Nx contains executors and generators for managing Nuxt 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/nuxt"
|
|
},
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Nuxt",
|
|
"Web",
|
|
"CLI",
|
|
"Front-end"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"type": "commonjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"migrations.json",
|
|
"generators.json"
|
|
],
|
|
"typesVersions": {
|
|
"*": {
|
|
"plugin": [
|
|
"dist/plugin.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"author": "Victor Savkin",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"homepage": "https://nx.dev",
|
|
"generators": "./generators.json",
|
|
"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",
|
|
"./plugin": {
|
|
"@nx/nx-source": "./plugin.ts",
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
}
|
|
},
|
|
"nx-migrations": {
|
|
"migrations": "./migrations.json",
|
|
"supportsOptionalMigrations": true
|
|
},
|
|
"dependencies": {
|
|
"tslib": "catalog:typescript",
|
|
"@nx/devkit": "workspace:*",
|
|
"@nx/js": "workspace:*",
|
|
"@nx/eslint": "workspace:*",
|
|
"@nx/vue": "workspace:*",
|
|
"@nx/vite": "workspace:*",
|
|
"@nx/vitest": "workspace:*",
|
|
"semver": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"nx": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"nuxt": ">=3.0.0 <5.0.0",
|
|
"@nuxt/schema": "^3.0.0 || ^4.0.0",
|
|
"@nuxt/kit": "^3.0.0 || ^4.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"nuxt": {
|
|
"optional": true
|
|
},
|
|
"@nuxt/schema": {
|
|
"optional": true
|
|
},
|
|
"@nuxt/kit": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|