mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 20:59:15 +02:00
refactor: ♻️ Rewrite build system to fit the monorepo architecture
This commit is contained in:
parent
7de4b573e3
commit
90b6399407
217 changed files with 2143 additions and 1858 deletions
135
packages/kit/package.json
Normal file
135
packages/kit/package.json
Normal file
|
|
@ -0,0 +1,135 @@
|
|||
{
|
||||
"name": "@versia-server/kit",
|
||||
"module": "index.ts",
|
||||
"type": "module",
|
||||
"version": "0.0.0",
|
||||
"description": "Framework for building Versia Server plugins",
|
||||
"author": {
|
||||
"email": "contact@cpluspatch.com",
|
||||
"name": "CPlusPatch",
|
||||
"url": "https://cpluspatch.com"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "bun run build.ts"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/versia-pub/server/issues"
|
||||
},
|
||||
"icon": "https://github.com/versia-pub/server",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"keywords": [
|
||||
"federated",
|
||||
"activitypub",
|
||||
"bun"
|
||||
],
|
||||
"maintainers": [
|
||||
{
|
||||
"email": "contact@cpluspatch.com",
|
||||
"name": "CPlusPatch",
|
||||
"url": "https://cpluspatch.com"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/versia-pub/server.git"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"drizzle-orm": "catalog:",
|
||||
"hono": "catalog:",
|
||||
"mitt": "catalog:",
|
||||
"zod": "catalog:",
|
||||
"zod-to-json-schema": "catalog:",
|
||||
"zod-validation-error": "catalog:",
|
||||
"chalk": "catalog:",
|
||||
"@versia/client": "workspace:*",
|
||||
"@versia-server/config": "workspace:*",
|
||||
"@versia-server/logging": "workspace:*",
|
||||
"@versia/sdk": "workspace:*",
|
||||
"html-to-text": "catalog:",
|
||||
"sharp": "catalog:",
|
||||
"magic-regexp": "catalog:",
|
||||
"altcha-lib": "catalog:",
|
||||
"hono-openapi": "catalog:",
|
||||
"qs": "catalog:",
|
||||
"@hono/zod-validator": "catalog:",
|
||||
"ioredis": "catalog:",
|
||||
"linkify-html": "catalog:",
|
||||
"markdown-it": "catalog:",
|
||||
"markdown-it-toc-done-right": "catalog:",
|
||||
"markdown-it-container": "catalog:",
|
||||
"@hackmd/markdown-it-task-lists": "catalog:",
|
||||
"bullmq": "catalog:",
|
||||
"web-push": "catalog:",
|
||||
"ip-matching": "catalog:",
|
||||
"sonic-channel": "catalog:"
|
||||
},
|
||||
"files": [
|
||||
"tables/migrations"
|
||||
],
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.ts"
|
||||
},
|
||||
"./db": {
|
||||
"import": "./db/index.ts"
|
||||
},
|
||||
"./tables": {
|
||||
"import": "./tables/schema.ts"
|
||||
},
|
||||
"./api": {
|
||||
"import": "./api.ts"
|
||||
},
|
||||
"./redis": {
|
||||
"import": "./redis.ts"
|
||||
},
|
||||
"./regex": {
|
||||
"import": "./regex.ts"
|
||||
},
|
||||
"./queues/delivery": {
|
||||
"import": "./queues/delivery/queue.ts"
|
||||
},
|
||||
"./queues/delivery/worker": {
|
||||
"import": "./queues/delivery/worker.ts"
|
||||
},
|
||||
"./queues/fetch": {
|
||||
"import": "./queues/fetch/queue.ts"
|
||||
},
|
||||
"./queues/fetch/worker": {
|
||||
"import": "./queues/fetch/worker.ts"
|
||||
},
|
||||
"./queues/inbox": {
|
||||
"import": "./queues/inbox/queue.ts"
|
||||
},
|
||||
"./queues/inbox/worker": {
|
||||
"import": "./queues/inbox/worker.ts"
|
||||
},
|
||||
"./queues/media": {
|
||||
"import": "./queues/media/queue.ts"
|
||||
},
|
||||
"./queues/media/worker": {
|
||||
"import": "./queues/media/worker.ts"
|
||||
},
|
||||
"./queues/push": {
|
||||
"import": "./queues/push/queue.ts"
|
||||
},
|
||||
"./queues/push/worker": {
|
||||
"import": "./queues/push/worker.ts"
|
||||
},
|
||||
"./queues/relationships": {
|
||||
"import": "./queues/relationships/queue.ts"
|
||||
},
|
||||
"./queues/relationships/worker": {
|
||||
"import": "./queues/relationships/worker.ts"
|
||||
},
|
||||
"./markdown": {
|
||||
"import": "./markdown.ts"
|
||||
},
|
||||
"./parsers": {
|
||||
"import": "./parsers.ts"
|
||||
},
|
||||
"./search": {
|
||||
"import": "./search-manager.ts"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue