fix: repository config in package.json files
This commit is contained in:
parent
3946f56261
commit
ed1bf37287
19 changed files with 95 additions and 5 deletions
|
@ -13,6 +13,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/analytics"
|
||||
},
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
|
|
|
@ -11,7 +11,11 @@
|
|||
"dist/src/**/*.js",
|
||||
"dist/src/**/*.d.ts"
|
||||
],
|
||||
"repository": "git@github.com:standardnotes/api-gateway.git",
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/api-gateway"
|
||||
},
|
||||
"author": "Karol Sójko <karol@standardnotes.com>",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"publishConfig": {
|
||||
|
|
|
@ -13,6 +13,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/auth"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
"setup:env": "cp .env.sample .env",
|
||||
|
|
|
@ -16,6 +16,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/common"
|
||||
},
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
|
|
|
@ -15,6 +15,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/domain-core"
|
||||
},
|
||||
"author": "Standard Notes",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
|
|
|
@ -15,6 +15,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/domain-events-infra"
|
||||
},
|
||||
"author": "Standard Notes",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
|
|
|
@ -15,6 +15,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/domain-events"
|
||||
},
|
||||
"author": "Standard Notes",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
|
|
|
@ -7,7 +7,11 @@
|
|||
"description": "Standard Notes Files Server",
|
||||
"main": "dist/src/index.js",
|
||||
"typings": "dist/src/index.d.ts",
|
||||
"repository": "git@github.com:standardnotes/files.git",
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/files"
|
||||
},
|
||||
"authors": [
|
||||
"Karol Sójko <karol@standardnotes.com>"
|
||||
],
|
||||
|
|
|
@ -16,6 +16,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/grpc"
|
||||
},
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
|
|
|
@ -7,7 +7,11 @@
|
|||
"description": "Standard Notes Home Server",
|
||||
"main": "dist/src/index.js",
|
||||
"typings": "dist/src/index.d.ts",
|
||||
"repository": "git@github.com:standardnotes/server.git",
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/home-server"
|
||||
},
|
||||
"author": "Karol Sójko <karol@standardnotes.com>",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
|
|
|
@ -16,6 +16,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/predicates"
|
||||
},
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
|
|
|
@ -7,7 +7,11 @@
|
|||
"description": "Revisions Server",
|
||||
"main": "dist/src/index.js",
|
||||
"typings": "dist/src/index.d.ts",
|
||||
"repository": "git@github.com:standardnotes/server.git",
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/revisions"
|
||||
},
|
||||
"author": "Karol Sójko <karol@standardnotes.com>",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"publishConfig": {
|
||||
|
|
|
@ -5,6 +5,11 @@
|
|||
"node": ">=18.0.0 <21.0.0"
|
||||
},
|
||||
"private": true,
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/scheduler"
|
||||
},
|
||||
"description": "Scheduler Server",
|
||||
"main": "dist/src/index.js",
|
||||
"typings": "dist/src/index.d.ts",
|
||||
|
|
|
@ -16,6 +16,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/security"
|
||||
},
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
|
|
|
@ -16,6 +16,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/settings"
|
||||
},
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
|
|
|
@ -17,6 +17,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/sncrypto-node"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
"build": "tsc --build",
|
||||
|
|
|
@ -7,7 +7,11 @@
|
|||
"description": "Syncing Server",
|
||||
"main": "dist/src/index.js",
|
||||
"typings": "dist/src/index.d.ts",
|
||||
"repository": "git@github.com:standardnotes/syncing-server-js.git",
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/syncing-server"
|
||||
},
|
||||
"author": "Karol Sójko <karol@standardnotes.com>",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"publishConfig": {
|
||||
|
|
|
@ -15,6 +15,11 @@
|
|||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/time"
|
||||
},
|
||||
"author": "Standard Notes",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
|
|
|
@ -5,6 +5,11 @@
|
|||
"node": ">=18.0.0 <21.0.0"
|
||||
},
|
||||
"private": true,
|
||||
"repository": {
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:standardnotes/server.git",
|
||||
"directory": "packages/websockets"
|
||||
},
|
||||
"description": "Websockets Server",
|
||||
"main": "dist/src/index.js",
|
||||
"typings": "dist/src/index.d.ts",
|
||||
|
|
Loading…
Reference in a new issue