nx/packages/js/package.json
Jason Jean 7705757c62
fix(misc): adjust npm keywords (#24743)
<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

## Current Behavior
<!-- This is the behavior we have today -->

NPM Keywords do not include those which are shown under the categories
under the `Discover packages` section. https://www.npmjs.com/

## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->

NPM Keywords include those which are shown under the categories under
the `Discover packages` section when applicable. https://www.npmjs.com/


![image](https://github.com/nrwl/nx/assets/8104246/ebbd4317-0336-4834-b4eb-0c673a358601)


## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #
2024-05-22 22:30:10 -04:00

76 lines
1.9 KiB
JSON

{
"name": "@nx/js",
"version": "0.0.1",
"private": false,
"description": "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
"directory": "packages/js"
},
"keywords": [
"Monorepo",
"Web",
"Node",
"Swc",
"Tsc",
"CLI",
"Front-end",
"Backend"
],
"main": "src/index.js",
"typings": "src/index.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrwl/nx/issues"
},
"homepage": "https://nx.dev",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json"
},
"generators": "./generators.json",
"executors": "./executors.json",
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.6",
"babel-plugin-const-enum": "^1.0.1",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"chalk": "^4.1.0",
"columnify": "^1.6.0",
"detect-port": "^1.5.1",
"fast-glob": "3.2.7",
"fs-extra": "^11.1.0",
"npm-package-arg": "11.0.1",
"npm-run-path": "^4.0.1",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.2",
"ignore": "^5.0.4",
"js-tokens": "^4.0.0",
"minimatch": "9.0.3",
"ora": "5.3.0",
"semver": "^7.5.3",
"source-map-support": "0.5.19",
"tslib": "^2.3.0",
"@nx/devkit": "file:../devkit",
"@nx/workspace": "file:../workspace"
},
"peerDependencies": {
"verdaccio": "^5.0.4"
},
"peerDependenciesMeta": {
"verdaccio": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}