feat: make home server components publishable (#617)

This commit is contained in:
Karol Sójko
2023-05-30 13:37:49 +02:00
committed by GitHub
parent 32c667b22d
commit 55fd873b37
5 changed files with 15 additions and 5 deletions
+3 -1
View File
@@ -4,7 +4,6 @@
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"private": true,
"description": "API Gateway For Standard Notes Services",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
@@ -15,6 +14,9 @@
"repository": "[email protected]:standardnotes/api-gateway.git",
"author": "Karol Sójko <[email protected]>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",
+3 -1
View File
@@ -4,12 +4,14 @@
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"private": true,
"description": "Auth Server",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"author": "Karol Sójko <[email protected]>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",
+3 -1
View File
@@ -4,7 +4,6 @@
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"private": true,
"description": "Standard Notes Files Server",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
@@ -13,6 +12,9 @@
"Karol Sójko <[email protected]>"
],
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",
+3 -1
View File
@@ -4,13 +4,15 @@
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"private": true,
"description": "Revisions Server",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"repository": "[email protected]:standardnotes/server.git",
"author": "Karol Sójko <[email protected]>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",
+3 -1
View File
@@ -4,13 +4,15 @@
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"private": true,
"description": "Syncing Server",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"repository": "[email protected]:standardnotes/syncing-server-js.git",
"author": "Karol Sójko <[email protected]>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",