112 lines
3.0 KiB
JSON
112 lines
3.0 KiB
JSON
{
|
|
"name": "@nx/remix",
|
|
"version": "0.0.1",
|
|
"description": "The Remix plugin for Nx contains executors and generators for managing Remix applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Jest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, routes, loaders, 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/remix"
|
|
},
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Remix",
|
|
"React",
|
|
"Web",
|
|
"CLI",
|
|
"Front-end"
|
|
],
|
|
"author": "Victor Savkin",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"homepage": "https://nx.dev",
|
|
"main": "./dist/index.js",
|
|
"type": "commonjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"!dist/tsconfig.tsbuildinfo",
|
|
"migrations.json",
|
|
"executors.json",
|
|
"generators.json"
|
|
],
|
|
"typesVersions": {
|
|
"*": {
|
|
"generators": [
|
|
"dist/generators.d.ts"
|
|
],
|
|
"plugin": [
|
|
"dist/plugin.d.ts"
|
|
],
|
|
"plugins/component-testing": [
|
|
"dist/plugins/component-testing/index.d.ts"
|
|
],
|
|
"plugins/*": [
|
|
"dist/plugins/*.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"generators": "./generators.json",
|
|
"executors": "./executors.json",
|
|
"nx-migrations": {
|
|
"migrations": "./migrations.json",
|
|
"supportsOptionalMigrations": true
|
|
},
|
|
"dependencies": {
|
|
"@nx/devkit": "workspace:*",
|
|
"@nx/js": "workspace:*",
|
|
"@nx/react": "workspace:*",
|
|
"@nx/web": "workspace:*",
|
|
"tslib": "catalog:typescript",
|
|
"@phenomnomnominal/tsquery": "catalog:typescript"
|
|
},
|
|
"devDependencies": {
|
|
"@nx/eslint": "workspace:*",
|
|
"nx": "workspace:*",
|
|
"@nx/vitest": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"@remix-run/dev": "^2.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@remix-run/dev": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"@nx/nx-source": "./index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./generators.json": "./generators.json",
|
|
"./executors.json": "./executors.json",
|
|
"./migrations.json": "./migrations.json",
|
|
"./generators": {
|
|
"@nx/nx-source": "./generators.ts",
|
|
"types": "./dist/generators.d.ts",
|
|
"default": "./dist/generators.js"
|
|
},
|
|
"./plugin": {
|
|
"@nx/nx-source": "./plugin.ts",
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
},
|
|
"./plugins/component-testing": {
|
|
"@nx/nx-source": "./plugins/component-testing/index.ts",
|
|
"types": "./dist/plugins/component-testing/index.d.ts",
|
|
"default": "./dist/plugins/component-testing/index.js"
|
|
},
|
|
"./plugins/*": {
|
|
"@nx/nx-source": "./plugins/*.ts",
|
|
"types": "./dist/plugins/*.d.ts",
|
|
"default": "./dist/plugins/*.js"
|
|
}
|
|
}
|
|
}
|