2023-09-11 05:31:08 +02:00
{
2024-08-19 15:16:01 +02:00
"name" : "versia-server" ,
2024-05-17 11:39:10 +02:00
"module" : "index.ts" ,
"type" : "module" ,
2025-05-25 16:14:24 +02:00
"version" : "0.9.0-alpha.0" ,
2025-04-14 16:51:00 +02:00
"description" : "Powerful, configurable and modular federated server using the Versia Protocol." ,
"homepage" : "https://versia.pub" ,
2024-05-17 11:39:10 +02:00
"author" : {
"email" : "contact@cpluspatch.com" ,
2024-08-27 18:09:15 +02:00
"name" : "Jesse Wierzbinski" ,
2024-05-17 11:39:10 +02:00
"url" : "https://cpluspatch.com"
} ,
"bugs" : {
2024-08-27 21:40:42 +02:00
"url" : "https://github.com/versia-pub/server/issues"
2024-05-17 11:39:10 +02:00
} ,
2025-02-14 17:49:34 +01:00
"icon" : "https://cdn.versia.pub/branding/icon.svg" ,
2024-05-17 11:39:10 +02:00
"license" : "AGPL-3.0-or-later" ,
2025-04-10 19:15:31 +02:00
"keywords" : [
"federated" ,
"activitypub" ,
"bun"
] ,
"workspaces" : [
"packages/*"
] ,
2024-05-17 11:39:10 +02:00
"maintainers" : [
{
"email" : "contact@cpluspatch.com" ,
2024-08-27 18:09:15 +02:00
"name" : "Jesse Wierzbinski" ,
2024-05-17 11:39:10 +02:00
"url" : "https://cpluspatch.com"
}
] ,
"repository" : {
"type" : "git" ,
2024-08-27 21:40:42 +02:00
"url" : "git+https://github.com/versia-pub/server.git"
2024-05-17 11:39:10 +02:00
} ,
"private" : true ,
"scripts" : {
"dev" : "bun run --hot index.ts" ,
"start" : "NODE_ENV=production bun run dist/index.js --prod" ,
2025-05-01 16:27:34 +02:00
"lint" : "biome check ." ,
2024-05-17 11:39:10 +02:00
"build" : "bun run build.ts" ,
2024-11-25 21:54:31 +01:00
"build:worker" : "bun run build-worker.ts" ,
2024-08-27 16:45:05 +02:00
"cloc" : "cloc . --exclude-dir node_modules,dist,.output,.nuxt,meta,logs --exclude-ext sql,log,pem" ,
2024-05-17 11:39:10 +02:00
"wc" : "find server database *.ts docs packages types utils drizzle tests -type f -print0 | wc -m --files0-from=-" ,
"cli" : "bun run cli/index.ts" ,
"prune" : "ts-prune | grep -v server/ | grep -v dist/ | grep -v '(used in module)'" ,
2025-02-15 02:47:29 +01:00
"schema:generate" : "bun run classes/config/to-json-schema.ts > config/config.schema.json && bun run packages/plugin-kit/json-schema.ts > packages/plugin-kit/manifest.schema.json" ,
2024-09-23 13:20:30 +02:00
"check" : "bunx tsc -p ." ,
2025-03-23 04:12:28 +01:00
"test" : "bun test" ,
2024-11-10 15:24:34 +01:00
"docs:dev" : "vitepress dev docs" ,
"docs:build" : "vitepress build docs" ,
"docs:preview" : "vitepress preview docs"
2024-05-12 03:47:25 +02:00
} ,
2024-05-17 11:39:10 +02:00
"trustedDependencies" : [
"@biomejs/biome" ,
"es5-ext" ,
"esbuild" ,
"msgpackr-extract" ,
2025-02-05 22:57:05 +01:00
"sharp"
2024-05-17 11:39:10 +02:00
] ,
"devDependencies" : {
2025-05-23 19:21:49 +02:00
"@biomejs/biome" : "2.0.0-beta.5" ,
2025-06-15 02:24:56 +02:00
"@types/bun" : "^1.2.16" ,
2024-05-17 11:39:10 +02:00
"@types/html-to-text" : "^9.0.4" ,
"@types/markdown-it-container" : "^2.0.10" ,
2025-06-15 02:24:56 +02:00
"@types/mime-types" : "^3.0.1" ,
2025-05-19 14:35:27 +02:00
"@types/qs" : "^6.14.0" ,
2025-01-02 02:45:40 +01:00
"@types/web-push" : "^3.6.4" ,
2025-04-19 13:16:53 +02:00
"bun-bagel" : "^1.2.0" ,
2025-05-05 18:03:57 +02:00
"drizzle-kit" : "^0.31.1" ,
2024-11-10 15:24:34 +01:00
"markdown-it-image-figures" : "^2.1.1" ,
2024-05-17 11:39:10 +02:00
"ts-prune" : "^0.10.3" ,
2025-04-06 20:58:00 +02:00
"typescript" : "^5.8.3" ,
2025-01-23 15:15:34 +01:00
"vitepress" : "^1.6.3" ,
2025-05-05 18:03:57 +02:00
"vitepress-plugin-tabs" : "^0.7.1" ,
2025-03-16 17:01:07 +01:00
"vitepress-sidebar" : "^1.31.1" ,
2025-06-04 16:18:49 +02:00
"vue" : "^3.5.16" ,
2025-03-22 02:38:01 +01:00
"zod-to-json-schema" : "^3.24.5"
2024-05-17 11:39:10 +02:00
} ,
"dependencies" : {
2025-06-15 02:24:56 +02:00
"@bull-board/api" : "^6.10.1" ,
"@bull-board/hono" : "^6.10.1" ,
2025-02-26 00:00:21 +01:00
"@clerc/plugin-completions" : "^0.44.0" ,
"@clerc/plugin-friendly-error" : "^0.44.0" ,
"@clerc/plugin-help" : "^0.44.0" ,
"@clerc/plugin-not-found" : "^0.44.0" ,
"@clerc/plugin-version" : "^0.44.0" ,
2024-05-17 11:39:10 +02:00
"@hackmd/markdown-it-task-lists" : "^2.1.4" ,
2025-06-04 16:18:49 +02:00
"@hono/zod-validator" : "^0.7.0" ,
"@inquirer/confirm" : "^5.1.12" ,
2025-06-15 02:24:56 +02:00
"@logtape/file" : "^0.12.0" ,
"@logtape/logtape" : "^0.12.0" ,
"@scalar/hono-api-reference" : "^0.9.4" ,
"@sentry/bun" : "^9.29.0" ,
2025-03-22 18:04:47 +01:00
"@versia/client" : "workspace:*" ,
2024-10-04 15:38:02 +02:00
"@versia/kit" : "workspace:*" ,
2025-04-08 16:01:10 +02:00
"@versia/sdk" : "workspace:*" ,
2025-06-15 02:24:56 +02:00
"altcha-lib" : "^1.3.0" ,
2024-05-17 11:39:10 +02:00
"blurhash" : "^2.0.5" ,
2025-06-15 02:24:56 +02:00
"bullmq" : "^5.53.3" ,
2024-12-22 11:56:52 +01:00
"chalk" : "^5.4.1" ,
2025-02-26 00:00:21 +01:00
"clerc" : "^0.44.0" ,
2025-04-06 20:58:00 +02:00
"confbox" : "^0.2.2" ,
2025-06-04 16:18:49 +02:00
"drizzle-orm" : "^0.44.2" ,
"feed" : "^5.1.0" ,
"hono" : "^4.7.11" ,
2025-05-01 16:27:34 +02:00
"hono-openapi" : "^0.4.8" ,
2025-03-27 20:12:00 +01:00
"hono-rate-limiter" : "^0.4.2" ,
2024-05-17 11:39:10 +02:00
"html-to-text" : "^9.0.5" ,
2025-04-16 17:03:28 +02:00
"ioredis" : "^5.6.1" ,
2024-05-17 11:39:10 +02:00
"ip-matching" : "^2.1.2" ,
2025-02-05 22:50:47 +01:00
"iso-639-1" : "^3.1.5" ,
2025-05-05 18:03:57 +02:00
"jose" : "^6.0.11" ,
2025-05-08 12:57:24 +02:00
"linkify-html" : "^4.3.1" ,
"linkify-string" : "^4.3.1" ,
"linkifyjs" : "^4.3.1" ,
2025-05-01 16:27:34 +02:00
"magic-regexp" : "^0.10.0" ,
2024-05-17 11:39:10 +02:00
"markdown-it" : "^14.1.0" ,
2024-09-14 17:32:32 +02:00
"markdown-it-anchor" : "^9.2.0" ,
2024-05-17 11:39:10 +02:00
"markdown-it-container" : "^4.0.0" ,
2025-05-01 22:02:45 +02:00
"markdown-it-mathjax3" : "^4.3.2" ,
2024-05-17 11:39:10 +02:00
"markdown-it-toc-done-right" : "^4.2.0" ,
2025-03-27 14:16:22 +01:00
"mime-types" : "^3.0.1" ,
2025-02-05 22:50:47 +01:00
"mitata" : "^1.0.34" ,
2025-06-15 02:24:56 +02:00
"oauth4webapi" : "^3.5.2" ,
2025-02-05 22:50:47 +01:00
"ora" : "^8.2.0" ,
2025-01-17 14:18:31 +01:00
"qs" : "^6.14.0" ,
2025-05-23 19:21:49 +02:00
"sharp" : "^0.34.2" ,
2024-06-29 11:40:44 +02:00
"sonic-channel" : "^1.3.1" ,
2024-05-17 11:39:10 +02:00
"string-comparison" : "^1.3.0" ,
"stringify-entities" : "^4.0.4" ,
2025-05-25 16:11:56 +02:00
"unicode-emoji-json" : "^0.8.0" ,
2024-05-17 11:39:10 +02:00
"uqr" : "^0.1.2" ,
2025-01-02 02:45:40 +01:00
"web-push" : "^3.6.7" ,
2024-05-17 11:39:10 +02:00
"xss" : "^1.0.15" ,
2025-04-16 17:03:28 +02:00
"youch" : "^4.1.0-beta.7" ,
2025-06-15 02:24:56 +02:00
"zod" : "^3.25.64" ,
2025-03-29 03:39:55 +01:00
"zod-openapi" : "^4.2.4" ,
2025-06-15 02:24:56 +02:00
"zod-validation-error" : "^3.5.0"
2024-05-17 11:39:10 +02:00
}
2024-04-07 07:30:49 +02:00
}