From 93c25802ca85b2a5df75502248db9ae1611302ef Mon Sep 17 00:00:00 2001 From: Utkir S Date: Mon, 13 May 2024 22:18:18 +0500 Subject: [PATCH] make packages public (#183) --- package.json | 5 ++++- packages/api/package.json | 4 ++++ packages/cli/package.json | 4 ++++ packages/contracts/package.json | 4 ++++ packages/db/package.json | 4 ++++ packages/executor/package.json | 4 ++++ packages/monitoring/package.json | 4 ++++ packages/node/package.json | 4 ++++ packages/params/package.json | 4 ++++ packages/types/package.json | 4 ++++ packages/utils/package.json | 4 ++++ 11 files changed, 44 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b9962d21..43a5fecb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,9 @@ { "name": "root", - "private": true, + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "engines": { "node": ">=18.0.0" diff --git a/packages/api/package.json b/packages/api/package.json index 41805286..d8d5d3cc 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/api", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "The API module of Etherspot bundler client", "author": "Etherspot", diff --git a/packages/cli/package.json b/packages/cli/package.json index a559a41e..d7e3b919 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/cli", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "> TODO: description", "author": "zincoshine ", diff --git a/packages/contracts/package.json b/packages/contracts/package.json index a970de1c..927d5cb6 100644 --- a/packages/contracts/package.json +++ b/packages/contracts/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/contracts", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "Smart contracts of Etherspot bundler client", "author": "Etherspot", diff --git a/packages/db/package.json b/packages/db/package.json index 59b0d660..f131dda0 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/db", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "The DB module of Etherspot bundler client", "author": "Etherspot", diff --git a/packages/executor/package.json b/packages/executor/package.json index 50ce7587..d68ac164 100644 --- a/packages/executor/package.json +++ b/packages/executor/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/executor", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "The Relayer module of Etherspot bundler client", "author": "Etherspot", diff --git a/packages/monitoring/package.json b/packages/monitoring/package.json index db87f123..bc349177 100644 --- a/packages/monitoring/package.json +++ b/packages/monitoring/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/monitoring", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "The Monitoring module of Etherspot bundler client", "author": "Etherspot", diff --git a/packages/node/package.json b/packages/node/package.json index f2b6ba60..e43db380 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/node", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "The bundler node module of Etherspot bundler client", "author": "Etherspot", diff --git a/packages/params/package.json b/packages/params/package.json index f3d0138e..3020eec5 100644 --- a/packages/params/package.json +++ b/packages/params/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/params", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "Various bundler parameters", "author": "Etherspot", diff --git a/packages/types/package.json b/packages/types/package.json index 04d506fb..defbcaca 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/types", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "The types of Etherspot bundler client", "author": "Etherspot", diff --git a/packages/utils/package.json b/packages/utils/package.json index 2699d86a..2f153537 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,5 +1,9 @@ { "name": "@skandha/utils", + "private": false, + "publishConfig": { + "access": "public" + }, "version": "1.5.7", "description": "utils of Etherspot bundler client", "author": "Etherspot",