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" ,
2024-05-29 03:03:20 +02:00
"version" : "0.7.0" ,
2024-05-17 11:39:10 +02:00
"description" : "A project to build a federated social network" ,
"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
} ,
2024-08-27 21:40:42 +02:00
"icon" : "https://github.com/versia-pub/server" ,
2024-05-17 11:39:10 +02:00
"license" : "AGPL-3.0-or-later" ,
"keywords" : [ "federated" , "activitypub" , "bun" ] ,
2024-08-29 20:32:04 +02:00
"workspaces" : [ "packages/plugin-kit" ] ,
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" ,
"lint" : "bunx @biomejs/biome check ." ,
"build" : "bun run build.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)'" ,
2024-09-23 10:34:14 +02:00
"schema:generate" : "bun run packages/config-manager/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 ." ,
2024-11-10 15:24:34 +01:00
"test" : "find . -name \"*.test.ts\" -not -path \"./node_modules/*\" | xargs -I {} sh -c 'bun test {} || exit 255'" ,
"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" ,
"@fortawesome/fontawesome-common-types" ,
"@fortawesome/free-regular-svg-icons" ,
"@fortawesome/free-solid-svg-icons" ,
"es5-ext" ,
"esbuild" ,
"json-editor-vue" ,
"msgpackr-extract" ,
"nuxt-app" ,
"sharp" ,
"vue-demi"
] ,
"oclif" : {
"bin" : "cli" ,
"dirname" : "cli" ,
"commands" : {
"strategy" : "explicit" ,
"target" : "./cli/index" ,
"identifier" : "commands"
} ,
"additionalHelpFlags" : [ "-h" ] ,
"additionalVersionFlags" : [ "-v" ] ,
"plugins" : [ ] ,
2024-08-19 15:16:01 +02:00
"description" : "CLI to interface with the Versia project" ,
2024-05-17 11:39:10 +02:00
"topicSeparator" : " " ,
"topics" : {
"user" : {
"description" : "Manage users"
}
} ,
"theme" : "./cli/theme.json" ,
"flexibleTaxonomy" : true
2024-05-12 03:47:25 +02:00
} ,
2024-05-17 11:39:10 +02:00
"devDependencies" : {
2024-10-23 18:01:40 +02:00
"@biomejs/biome" : "^1.9.4" ,
2024-11-04 10:09:55 +01:00
"@types/bun" : "^1.1.13" ,
2024-07-11 12:56:28 +02:00
"@types/cli-progress" : "^3.11.6" ,
2024-05-17 11:39:10 +02:00
"@types/cli-table" : "^0.3.4" ,
"@types/html-to-text" : "^9.0.4" ,
"@types/ioredis" : "^5.0.0" ,
2024-07-11 12:56:28 +02:00
"@types/jsonld" : "^1.5.15" ,
2024-05-17 11:39:10 +02:00
"@types/markdown-it-container" : "^2.0.10" ,
"@types/mime-types" : "^2.1.4" ,
2024-09-14 17:32:32 +02:00
"@types/pg" : "^8.11.10" ,
2024-11-07 13:24:11 +01:00
"@types/qs" : "^6.9.17" ,
2024-11-18 13:46:06 +01:00
"drizzle-kit" : "^0.28.1" ,
2024-11-10 15:24:34 +01:00
"markdown-it-image-figures" : "^2.1.1" ,
"markdown-it-mathjax3" : "^4.3.2" ,
2024-11-18 13:46:06 +01:00
"oclif" : "^4.15.28" ,
2024-05-17 11:39:10 +02:00
"ts-prune" : "^0.10.3" ,
2024-10-11 15:40:54 +02:00
"typescript" : "^5.6.3" ,
2024-11-10 13:08:43 +01:00
"vitepress" : "^1.5.0" ,
2024-11-10 15:24:34 +01:00
"vitepress-plugin-tabs" : "^0.5.0" ,
"vitepress-sidebar" : "^1.29.0" ,
2024-11-18 13:46:06 +01:00
"vue" : "^3.5.13" ,
2024-10-26 15:05:45 +02:00
"zod-to-json-schema" : "^3.23.5"
2024-05-17 11:39:10 +02:00
} ,
"peerDependencies" : {
"typescript" : "^5.3.2"
} ,
"dependencies" : {
2024-06-29 08:49:17 +02:00
"@bradenmacdonald/s3-lite-client" : "npm:@jsr/bradenmacdonald__s3-lite-client" ,
2024-05-17 11:39:10 +02:00
"@hackmd/markdown-it-task-lists" : "^2.1.4" ,
2024-11-18 13:46:06 +01:00
"@hono/hono" : "npm:@jsr/hono__hono@4.6.10" ,
2024-08-19 21:23:47 +02:00
"@hono/prometheus" : "^1.0.1" ,
2024-08-27 18:09:15 +02:00
"@hono/swagger-ui" : "^0.4.1" ,
2024-10-07 12:59:54 +02:00
"@hono/zod-openapi" : "^0.16.4" ,
2024-11-18 13:46:06 +01:00
"@inquirer/confirm" : "^5.0.2" ,
"@inquirer/input" : "^4.0.2" ,
2024-05-17 11:39:10 +02:00
"@json2csv/plainjs" : "^7.0.6" ,
2024-11-07 13:24:11 +01:00
"@logtape/logtape" : "npm:@jsr/logtape__logtape@0.8.0-dev.110+5c38a54f" ,
2024-11-18 13:46:06 +01:00
"@oclif/core" : "^4.0.32" ,
"@sentry/bun" : "^8.38.0" ,
2024-05-17 11:39:10 +02:00
"@tufjs/canonical-json" : "^2.0.0" ,
2024-08-28 00:28:35 +02:00
"@versia/client" : "^0.1.0" ,
2024-10-24 19:18:21 +02:00
"@versia/federation" : "^0.1.3" ,
2024-10-04 15:38:02 +02:00
"@versia/kit" : "workspace:*" ,
2024-11-18 13:46:06 +01:00
"altcha-lib" : "^1.1.1" ,
2024-05-17 11:39:10 +02:00
"blurhash" : "^2.0.5" ,
2024-11-18 13:46:06 +01:00
"bullmq" : "^5.26.2" ,
2024-10-07 12:59:54 +02:00
"c12" : "^2.0.1" ,
2024-05-17 11:39:10 +02:00
"chalk" : "^5.3.0" ,
"cli-progress" : "^3.12.0" ,
"cli-table" : "^0.3.11" ,
2024-10-07 12:59:54 +02:00
"confbox" : "^0.1.8" ,
2024-11-18 13:46:06 +01:00
"drizzle-orm" : "^0.36.3" ,
2024-05-17 11:39:10 +02:00
"extract-zip" : "^2.0.1" ,
2024-11-18 13:46:06 +01:00
"hono" : "npm:@jsr/hono__hono@4.6.10" ,
2024-05-17 11:39:10 +02:00
"html-to-text" : "^9.0.5" ,
2024-06-04 09:11:56 +02:00
"ioredis" : "^5.4.1" ,
2024-05-17 11:39:10 +02:00
"ip-matching" : "^2.1.2" ,
2024-08-27 16:01:10 +02:00
"iso-639-1" : "^3.1.3" ,
2024-10-23 18:01:40 +02:00
"jose" : "^5.9.6" ,
2024-05-17 11:39:10 +02:00
"linkify-html" : "^4.1.3" ,
"linkify-string" : "^4.1.3" ,
"linkifyjs" : "^4.1.3" ,
"magic-regexp" : "^0.8.0" ,
"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" ,
"markdown-it-toc-done-right" : "^4.2.0" ,
"mime-types" : "^2.1.35" ,
2024-11-10 13:08:43 +01:00
"mitata" : "^1.0.10" ,
2024-11-18 13:46:06 +01:00
"oauth4webapi" : "^3.1.3" ,
2024-11-02 00:46:24 +01:00
"ora" : "^8.1.1" ,
2024-10-26 15:05:45 +02:00
"pg" : "^8.13.1" ,
2024-08-19 21:23:47 +02:00
"prom-client" : "^15.1.3" ,
2024-11-18 13:46:06 +01:00
"qs" : "^6.13.1" ,
2024-08-19 14:46:20 +02:00
"sharp" : "^0.33.5" ,
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" ,
2024-06-27 01:11:39 +02:00
"strip-ansi" : "^7.1.0" ,
2024-05-17 11:39:10 +02:00
"table" : "^6.8.2" ,
"unzipit" : "^1.4.3" ,
"uqr" : "^0.1.2" ,
"xss" : "^1.0.15" ,
2024-06-04 09:11:56 +02:00
"zod" : "^3.23.8" ,
2024-09-16 12:34:33 +02:00
"zod-validation-error" : "^3.4.0"
2024-05-17 11:39:10 +02:00
}
2024-04-07 07:30:49 +02:00
}