From c15d6a9a2a1539f181f77306205306e04171a1b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uro=C5=A1=20Marolt?= Date: Thu, 16 Apr 2026 11:54:40 +0200 Subject: [PATCH 1/2] chore: mark all packages as private MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Uroš Marolt --- package.json | 1 + services/apps/automatic_projects_discovery_worker/package.json | 1 + services/apps/cache_worker/package.json | 1 + services/apps/categorization_worker/package.json | 1 + services/apps/cron_service/package.json | 1 + services/apps/data_sink_worker/package.json | 1 + services/apps/entity_merging_worker/package.json | 1 + services/apps/exports_worker/package.json | 1 + services/apps/integration_run_worker/package.json | 1 + services/apps/integration_stream_worker/package.json | 1 + services/apps/kafka_connect_monitor/package.json | 1 + services/apps/members_enrichment_worker/package.json | 1 + services/apps/merge_suggestions_worker/package.json | 1 + services/apps/nango_webhook_api/package.json | 1 + services/apps/nango_worker/package.json | 1 + services/apps/organizations_enrichment_worker/package.json | 1 + services/apps/profiles_worker/package.json | 1 + services/apps/script_executor_worker/package.json | 1 + services/apps/search_sync_api/package.json | 1 + services/apps/search_sync_worker/package.json | 1 + services/apps/security_best_practices_worker/package.json | 1 + services/apps/snowflake_connectors/package.json | 1 + services/apps/template_consumer/package.json | 1 + services/apps/template_worker/package.json | 1 + services/apps/temporal_codec_server/package.json | 1 + services/apps/webhook_api/package.json | 1 + services/archetypes/consumer/package.json | 1 + services/archetypes/standard/package.json | 1 + services/archetypes/worker/package.json | 1 + services/cronjobs/archived_repositories/package.json | 1 + services/libs/audit-logs/package.json | 1 + services/libs/common/package.json | 1 + services/libs/common_services/package.json | 1 + services/libs/data-access-layer/package.json | 1 + services/libs/database/package.json | 1 + services/libs/integrations/package.json | 1 + services/libs/logging/package.json | 1 + services/libs/nango/package.json | 1 + services/libs/opensearch/package.json | 1 + services/libs/queue/package.json | 1 + services/libs/redis/package.json | 1 + services/libs/slack/package.json | 1 + services/libs/snowflake/package.json | 1 + services/libs/telemetry/package.json | 1 + services/libs/temporal/package.json | 1 + services/libs/types/package.json | 1 + services/package.json | 1 + 47 files changed, 47 insertions(+) diff --git a/package.json b/package.json index 3c3a49a469..c6179e1862 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,5 @@ { + "private": true, "scripts": { "prepare": "husky" }, diff --git a/services/apps/automatic_projects_discovery_worker/package.json b/services/apps/automatic_projects_discovery_worker/package.json index 022c1a6297..73cf0df330 100644 --- a/services/apps/automatic_projects_discovery_worker/package.json +++ b/services/apps/automatic_projects_discovery_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/automatic-projects-discovery-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=automatic-projects-discovery SERVICE=automatic-projects-discovery-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=automatic-projects-discovery SERVICE=automatic-projects-discovery-worker tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/cache_worker/package.json b/services/apps/cache_worker/package.json index d889a517fb..31fedeb6de 100644 --- a/services/apps/cache_worker/package.json +++ b/services/apps/cache_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/cache-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=cache SERVICE=cache-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=cache SERVICE=cache-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/categorization_worker/package.json b/services/apps/categorization_worker/package.json index 9a5fa000ae..483beec712 100644 --- a/services/apps/categorization_worker/package.json +++ b/services/apps/categorization_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/categorization-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=categorization SERVICE=categorization-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=categorization SERVICE=categorization-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/cron_service/package.json b/services/apps/cron_service/package.json index ff6738ce13..1077a2e0b1 100644 --- a/services/apps/cron_service/package.json +++ b/services/apps/cron_service/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/cron-service", + "private": true, "scripts": { "start": "SERVICE=cron-service tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=cron-service LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/data_sink_worker/package.json b/services/apps/data_sink_worker/package.json index 0f0cf96cfc..c62c1e20d8 100644 --- a/services/apps/data_sink_worker/package.json +++ b/services/apps/data_sink_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/data-sink-worker", + "private": true, "scripts": { "start": "SERVICE=data-sink-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=data-sink-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9233 src/main.ts", diff --git a/services/apps/entity_merging_worker/package.json b/services/apps/entity_merging_worker/package.json index d71dfba3b7..b56977af20 100644 --- a/services/apps/entity_merging_worker/package.json +++ b/services/apps/entity_merging_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/entity-merging-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=entity-merging SERVICE=entity-merging-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=entity-merging SERVICE=entity-merging-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/exports_worker/package.json b/services/apps/exports_worker/package.json index 07d6aaa526..a3b183a589 100644 --- a/services/apps/exports_worker/package.json +++ b/services/apps/exports_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/exports-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=exports SERVICE=exports-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=exports SERVICE=exports-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/integration_run_worker/package.json b/services/apps/integration_run_worker/package.json index e48d005e4e..4baf81fc10 100644 --- a/services/apps/integration_run_worker/package.json +++ b/services/apps/integration_run_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/integration-run-worker", + "private": true, "scripts": { "start": "SERVICE=integration-run-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-run-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9230 src/main.ts", diff --git a/services/apps/integration_stream_worker/package.json b/services/apps/integration_stream_worker/package.json index 23dd8920fd..f28bee3956 100644 --- a/services/apps/integration_stream_worker/package.json +++ b/services/apps/integration_stream_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/integration-stream-worker", + "private": true, "scripts": { "start": "SERVICE=integration-stream-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=integration-stream-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9231 src/main.ts", diff --git a/services/apps/kafka_connect_monitor/package.json b/services/apps/kafka_connect_monitor/package.json index 617197f3f5..606d82f033 100644 --- a/services/apps/kafka_connect_monitor/package.json +++ b/services/apps/kafka_connect_monitor/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/kafka-connect-monitor", + "private": true, "scripts": { "start": "SERVICE=kafka-connect-monitor tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=kafka-connect-monitor LOG_LEVEL=trace tsx --inspect=0.0.0.0:9240 src/main.ts", diff --git a/services/apps/members_enrichment_worker/package.json b/services/apps/members_enrichment_worker/package.json index 5de18ec903..5731d6f3b4 100644 --- a/services/apps/members_enrichment_worker/package.json +++ b/services/apps/members_enrichment_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/members-enrichment-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=members-enrichment SERVICE=members-enrichment-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../../backend/.env.dist.local && . ../../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=members-enrichment SERVICE=members-enrichment-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/merge_suggestions_worker/package.json b/services/apps/merge_suggestions_worker/package.json index a4bf59389b..04a9a63c18 100644 --- a/services/apps/merge_suggestions_worker/package.json +++ b/services/apps/merge_suggestions_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/merge-suggestions-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=merge-suggestions SERVICE=merge-suggestions-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=merge-suggestions SERVICE=merge-suggestions-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/nango_webhook_api/package.json b/services/apps/nango_webhook_api/package.json index 8acb87d1d7..c5ba88f10b 100644 --- a/services/apps/nango_webhook_api/package.json +++ b/services/apps/nango_webhook_api/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/nango-webook-api", + "private": true, "scripts": { "start": "SERVICE=nango-webhook-api tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=nango-webhook-api LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/nango_worker/package.json b/services/apps/nango_worker/package.json index fcfd97a680..211b2f8517 100644 --- a/services/apps/nango_worker/package.json +++ b/services/apps/nango_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/nango-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=nango SERVICE=nango-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=nango SERVICE=nango-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/organizations_enrichment_worker/package.json b/services/apps/organizations_enrichment_worker/package.json index f702229d9a..ff6a4f4208 100644 --- a/services/apps/organizations_enrichment_worker/package.json +++ b/services/apps/organizations_enrichment_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/organizations-enrichment-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=organizations-enrichment SERVICE=organizations-enrichment-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../../backend/.env.dist.local && . ../../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=organizations-enrichment SERVICE=organizations-enrichment-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/profiles_worker/package.json b/services/apps/profiles_worker/package.json index bf3ceecd9f..65f15f8965 100644 --- a/services/apps/profiles_worker/package.json +++ b/services/apps/profiles_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/profiles-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=profiles SERVICE=profiles-worker LOG_LEVEL=debug tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=profiles SERVICE=profiles-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/script_executor_worker/package.json b/services/apps/script_executor_worker/package.json index 7050aa2a06..41bdaa9411 100644 --- a/services/apps/script_executor_worker/package.json +++ b/services/apps/script_executor_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/script-executor-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=script-executor SERVICE=script-executor-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=script-executor SERVICE=script-executor-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/search_sync_api/package.json b/services/apps/search_sync_api/package.json index 6453e90873..022dd5abb8 100644 --- a/services/apps/search_sync_api/package.json +++ b/services/apps/search_sync_api/package.json @@ -1,5 +1,6 @@ { "name": "@crowdapp/search-sync-api", + "private": true, "scripts": { "start": "SERVICE=search-sync-api tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=search-sync-api LOG_LEVEL=trace tsx --inspect=0.0.0.0:9236 src/main.ts", diff --git a/services/apps/search_sync_worker/package.json b/services/apps/search_sync_worker/package.json index a41b74bca1..ba324ebe47 100644 --- a/services/apps/search_sync_worker/package.json +++ b/services/apps/search_sync_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/search-sync-worker", + "private": true, "scripts": { "start": "SERVICE=search-sync-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=search-sync-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9234 src/main.ts", diff --git a/services/apps/security_best_practices_worker/package.json b/services/apps/security_best_practices_worker/package.json index 40aea71a19..0831dbedcb 100644 --- a/services/apps/security_best_practices_worker/package.json +++ b/services/apps/security_best_practices_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/security-best-practices-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=security-best-practices SERVICE=security-best-practices-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=security-best-practices SERVICE=security-best-practices-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/snowflake_connectors/package.json b/services/apps/snowflake_connectors/package.json index 5f37b6662e..963b1abda5 100644 --- a/services/apps/snowflake_connectors/package.json +++ b/services/apps/snowflake_connectors/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/snowflake-connectors", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=snowflakeConnectors SERVICE=snowflake-connectors-worker tsx src/index.ts", "start:debug": "CROWD_TEMPORAL_TASKQUEUE=snowflakeConnectors SERVICE=snowflake-connectors-worker LOG_LEVEL=debug tsx src/index.ts", diff --git a/services/apps/template_consumer/package.json b/services/apps/template_consumer/package.json index 38b19eeaeb..401503b0a7 100644 --- a/services/apps/template_consumer/package.json +++ b/services/apps/template_consumer/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/template-consumer", + "private": true, "scripts": { "start": "SERVICE=template-consumer tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=template-consumer LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/template_worker/package.json b/services/apps/template_worker/package.json index 9592cb95ce..a10b511519 100644 --- a/services/apps/template_worker/package.json +++ b/services/apps/template_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/template-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=templateWorker SERVICE=template-worker tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=templateWorker SERVICE=template-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/temporal_codec_server/package.json b/services/apps/temporal_codec_server/package.json index 36aecd5ed7..6b6d7582dd 100644 --- a/services/apps/temporal_codec_server/package.json +++ b/services/apps/temporal_codec_server/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/temporal-codec-server", + "private": true, "scripts": { "start": "SERVICE=temporal-codec-server tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=temporal-codec-server LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts", diff --git a/services/apps/webhook_api/package.json b/services/apps/webhook_api/package.json index 734fff28d4..c9a980dd5c 100644 --- a/services/apps/webhook_api/package.json +++ b/services/apps/webhook_api/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/webhook-api", + "private": true, "scripts": { "start": "SERVICE=webhook-api tsx src/main.ts", "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=webhook-api LOG_LEVEL=trace tsx --inspect=0.0.0.0:9236 src/main.ts", diff --git a/services/archetypes/consumer/package.json b/services/archetypes/consumer/package.json index c87091fc73..5f4f415305 100644 --- a/services/archetypes/consumer/package.json +++ b/services/archetypes/consumer/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/archetype-consumer", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/archetypes/standard/package.json b/services/archetypes/standard/package.json index a5ac4a2e15..27d1361b0f 100644 --- a/services/archetypes/standard/package.json +++ b/services/archetypes/standard/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/archetype-standard", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/archetypes/worker/package.json b/services/archetypes/worker/package.json index d0433bce3e..c5c8096e5e 100644 --- a/services/archetypes/worker/package.json +++ b/services/archetypes/worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/archetype-worker", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/cronjobs/archived_repositories/package.json b/services/cronjobs/archived_repositories/package.json index 2f787a0b34..24182715c5 100644 --- a/services/cronjobs/archived_repositories/package.json +++ b/services/cronjobs/archived_repositories/package.json @@ -1,5 +1,6 @@ { "name": "repository-archive-checker", + "private": true, "scripts": { "build": "tsc", "start-main": "pnpm run build && node dist/main.js", diff --git a/services/libs/audit-logs/package.json b/services/libs/audit-logs/package.json index e5971a7a02..caf4afd10d 100644 --- a/services/libs/audit-logs/package.json +++ b/services/libs/audit-logs/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/audit-logs", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/common/package.json b/services/libs/common/package.json index 0e7807b1fe..65a083982e 100644 --- a/services/libs/common/package.json +++ b/services/libs/common/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/common", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/common_services/package.json b/services/libs/common_services/package.json index e6b22b8fff..0205861ada 100644 --- a/services/libs/common_services/package.json +++ b/services/libs/common_services/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/common_services", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/data-access-layer/package.json b/services/libs/data-access-layer/package.json index ab3296583e..a373ea5142 100644 --- a/services/libs/data-access-layer/package.json +++ b/services/libs/data-access-layer/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/data-access-layer", + "private": true, "main": "src/index.ts", "scripts": { "test": "vitest run", diff --git a/services/libs/database/package.json b/services/libs/database/package.json index f5b5b129fa..6e63ff41ae 100644 --- a/services/libs/database/package.json +++ b/services/libs/database/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/database", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/integrations/package.json b/services/libs/integrations/package.json index 6976a18332..80cdb3c923 100644 --- a/services/libs/integrations/package.json +++ b/services/libs/integrations/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/integrations", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/logging/package.json b/services/libs/logging/package.json index ec8b93a425..19e94aeef6 100644 --- a/services/libs/logging/package.json +++ b/services/libs/logging/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/logging", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/nango/package.json b/services/libs/nango/package.json index 4431ac88cc..fceb8e175e 100644 --- a/services/libs/nango/package.json +++ b/services/libs/nango/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/nango", + "private": true, "main": "src/index.ts", "type": "commonjs", "scripts": { diff --git a/services/libs/opensearch/package.json b/services/libs/opensearch/package.json index 42b456c1d1..8f3fe81594 100644 --- a/services/libs/opensearch/package.json +++ b/services/libs/opensearch/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/opensearch", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/queue/package.json b/services/libs/queue/package.json index 56d6604df0..6a1b08899e 100644 --- a/services/libs/queue/package.json +++ b/services/libs/queue/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/queue", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/redis/package.json b/services/libs/redis/package.json index c41860a9ab..d398583271 100644 --- a/services/libs/redis/package.json +++ b/services/libs/redis/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/redis", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/slack/package.json b/services/libs/slack/package.json index 1b29279b64..f8b042b69b 100644 --- a/services/libs/slack/package.json +++ b/services/libs/slack/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/slack", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/snowflake/package.json b/services/libs/snowflake/package.json index caf9081de6..26a7788b8e 100644 --- a/services/libs/snowflake/package.json +++ b/services/libs/snowflake/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/snowflake", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/telemetry/package.json b/services/libs/telemetry/package.json index f2716133a2..28e88a7629 100644 --- a/services/libs/telemetry/package.json +++ b/services/libs/telemetry/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/telemetry", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/temporal/package.json b/services/libs/temporal/package.json index 5165ec2fcc..3d0cdbcee3 100644 --- a/services/libs/temporal/package.json +++ b/services/libs/temporal/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/temporal", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/libs/types/package.json b/services/libs/types/package.json index 93ed95708f..5fc4c0ede1 100644 --- a/services/libs/types/package.json +++ b/services/libs/types/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/types", + "private": true, "main": "src/index.ts", "scripts": { "lint": "npx eslint --ext .ts src --max-warnings=0", diff --git a/services/package.json b/services/package.json index 7771c8d0c4..e4ed587ce8 100644 --- a/services/package.json +++ b/services/package.json @@ -1,4 +1,5 @@ { + "private": true, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@typescript-eslint/eslint-plugin": "^5.59.2", From d5233f2f1199431d8ad4aa20c7ce56ff3fbcf79b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uro=C5=A1=20Marolt?= Date: Wed, 22 Apr 2026 22:56:52 +0200 Subject: [PATCH 2/2] chore: add private:true to pcc-sync-worker package.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 Signed-off-by: Uroš Marolt --- services/apps/pcc_sync_worker/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/services/apps/pcc_sync_worker/package.json b/services/apps/pcc_sync_worker/package.json index 6a421618ae..7ee91d6b91 100644 --- a/services/apps/pcc_sync_worker/package.json +++ b/services/apps/pcc_sync_worker/package.json @@ -1,5 +1,6 @@ { "name": "@crowd/pcc-sync-worker", + "private": true, "scripts": { "start": "CROWD_TEMPORAL_TASKQUEUE=pccSync SERVICE=pcc-sync-worker tsx src/index.ts", "start:debug": "CROWD_TEMPORAL_TASKQUEUE=pccSync SERVICE=pcc-sync-worker LOG_LEVEL=debug tsx src/index.ts",