nx/packages/devkit/package.json
Colum Ferry 25eeddc338
feat(testing): add playwright generator to convert from executors to plugin (#22784)
Co-authored-by: FrozenPandaz <jasonjean1993@gmail.com>
2024-04-24 09:06:23 -04:00

50 lines
1.2 KiB
JSON

{
"name": "@nx/devkit",
"version": "0.0.1",
"private": false,
"description": "The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by leveraging the Nx Devkit](https://nx.dev/extending-nx/intro/getting-started) on our docs.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/devkit"
},
"keywords": [
"Monorepo",
"Angular",
"React",
"Web",
"Node",
"Nest",
"Jest",
"Cypress",
"CLI"
],
"main": "./index",
"typings": "./index.d.ts",
"author": "Victor Savkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"dependencies": {
"ejs": "^3.1.7",
"enquirer": "~2.3.6",
"ignore": "^5.0.4",
"tmp": "~0.2.1",
"tslib": "^2.3.0",
"semver": "^7.5.3",
"yargs-parser": "21.1.1",
"minimatch": "9.0.3"
},
"peerDependencies": {
"nx": ">= 16 <= 19"
},
"publishConfig": {
"access": "public"
},
"nx-migrations": {
"migrations": "./migrations.json"
}
}