From 43adc092cbad1423c7ca237017d7eb6db0a8f64d Mon Sep 17 00:00:00 2001 From: Igor Katsuba Date: Thu, 20 Jun 2024 17:35:05 +0300 Subject: [PATCH] fix(nx): add package metadata --- packages/nx/package.json | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/packages/nx/package.json b/packages/nx/package.json index eab5650..a4ab2a2 100644 --- a/packages/nx/package.json +++ b/packages/nx/package.json @@ -1,6 +1,20 @@ { "name": "@mutates/nx", - "version": "0.0.1", + "version": "0.0.0-development", + "keywords": [ + "typescript", + "ast", + "mutations", + "nx", + "generators", + "migrations" + ], + "homepage": "https://github.com/IKatsuba/mutates", + "repository": "https://github.com/IKatsuba/mutates", + "license": "Apache-2.0", + "contributors": [ + "Igor Katsuba " + ], "type": "commonjs", "main": "./src/index.js", "typings": "./src/index.d.ts", @@ -11,5 +25,11 @@ "@mutates/core": "0.0.0-development", "@nx/devkit": ">=19.0.0", "ts-morph": ">=22.0.0" - } + }, + "publishConfig": { + "access": "public" + }, + "authors": [ + "Igor Katsuba " + ] }