refactor: 🚚 Organize code into sub-packages, instead of a single large package

This commit is contained in:
Jesse Wierzbinski 2025-06-15 04:38:20 +02:00
parent 79742f47dc
commit a6d3ebbeef
No known key found for this signature in database
366 changed files with 942 additions and 833 deletions

View file

@ -0,0 +1,28 @@
{
"name": "@versia-server/config",
"module": "index.ts",
"type": "module",
"version": "0.0.1",
"private": true,
"exports": {
".": {
"import": "./index.ts",
"default": "./index.ts"
},
"./schema": {
"import": "./schema.ts",
"default": "./schema.ts"
}
},
"dependencies": {
"chalk": "catalog:",
"zod": "catalog:",
"zod-validation-error": "catalog:",
"confbox": "catalog:",
"web-push": "catalog:",
"iso-639-1": "catalog:",
"mime-types": "catalog:",
"@versia/client": "workspace:*",
"zod-to-json-schema": "catalog:"
}
}