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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 5 deletions

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": "git@github.com:standardnotes/api-gateway.git",
"author": "Karol Sójko <karolsojko@standardnotes.com>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",

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 <karolsojko@standardnotes.com>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",

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 <karol@standardnotes.com>"
],
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",

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": "git@github.com:standardnotes/server.git",
"author": "Karol Sójko <karolsojko@standardnotes.com>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",

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": "git@github.com:standardnotes/syncing-server-js.git",
"author": "Karol Sójko <karolsojko@standardnotes.com>",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"setup:env": "cp .env.sample .env",