server/package.json

108 lines
2.9 KiB
JSON
Raw Normal View History

2023-09-11 05:31:08 +02:00
{
"name": "lysand",
"module": "index.ts",
"type": "module",
2023-11-29 04:57:35 +01:00
"version": "0.1.2",
"description": "A project to build a federated social network",
"author": {
"email": "contact@cpluspatch.com",
"name": "CPlusPatch",
"url": "https://cpluspatch.com"
},
"bugs": {
"url": "https://github.com/lysand-org/lysand/issues"
},
"icon": "https://github.com/lysand-org/lysand",
"license": "AGPL-3.0",
"keywords": [
"federated",
"activitypub",
"bun"
],
"maintainers": [
{
"email": "contact@cpluspatch.com",
"name": "CPlusPatch",
"url": "https://cpluspatch.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/lysand-org/lysand.git"
},
"private": true,
"scripts": {
"dev": "bun run index.ts",
"vite:dev": "bunx --bun vite pages",
2023-11-20 03:05:07 +01:00
"start": "bun run index.ts",
"migrate-dev": "bun prisma migrate dev",
"migrate": "bun prisma migrate deploy",
2023-11-20 03:25:41 +01:00
"lint": "eslint --config .eslintrc.cjs --ext .ts .",
"prisma": "DATABASE_URL=$(bun run prisma.ts) bunx prisma",
"generate": "bun prisma generate",
2023-11-30 05:16:58 +01:00
"benchmark:timeline": "bun run benchmarks/timelines.ts",
"cloc": "cloc . --exclude-dir node_modules",
2023-11-21 00:58:39 +01:00
"cli": "bun run cli.ts"
},
"trustedDependencies": [
"sharp",
"@prisma/client"
],
"devDependencies": {
2023-11-28 23:04:18 +01:00
"@julr/unocss-preset-forms": "^0.1.0",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
2023-11-29 19:46:34 +01:00
"@types/cli-table": "^0.3.4",
2023-11-28 23:04:18 +01:00
"@types/html-to-text": "^9.0.4",
2023-12-02 00:00:00 +01:00
"@types/ioredis": "^5.0.0",
2023-11-28 23:04:18 +01:00
"@types/jsonld": "^1.5.13",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@unocss/cli": "^0.57.7",
"activitypub-types": "^1.0.3",
"bun-types": "latest",
2023-11-28 23:04:18 +01:00
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
2023-11-28 23:04:18 +01:00
"eslint-formatter-pretty": "^6.0.0",
"eslint-formatter-summary": "^1.1.0",
2023-11-28 23:04:18 +01:00
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"unocss": "^0.57.7"
},
"peerDependencies": {
2023-11-28 23:04:18 +01:00
"typescript": "^5.3.2"
},
"dependencies": {
2023-11-28 23:04:18 +01:00
"@aws-sdk/client-s3": "^3.461.0",
2023-11-20 03:25:41 +01:00
"@prisma/client": "^5.6.0",
"@vitejs/plugin-vue": "^4.5.1",
"@vueuse/head": "^2.0.0",
2023-11-22 01:56:58 +01:00
"blurhash": "^2.0.5",
2023-11-28 23:04:18 +01:00
"bullmq": "^4.14.4",
2023-10-23 02:32:17 +02:00
"chalk": "^5.3.0",
2023-11-29 19:46:34 +01:00
"cli-table": "^0.3.11",
2023-11-22 07:13:09 +01:00
"eventemitter3": "^5.0.1",
"extract-zip": "^2.0.1",
"html-to-text": "^9.0.5",
2023-12-02 00:00:00 +01:00
"ioredis": "^5.3.2",
"ip-matching": "^2.1.2",
"iso-639-1": "^3.1.0",
2023-11-28 23:04:18 +01:00
"isomorphic-dompurify": "^1.10.0",
"jsonld": "^8.3.1",
"linkify-html": "^4.1.3",
"linkify-string": "^4.1.3",
"linkifyjs": "^4.1.3",
2023-10-17 00:03:29 +02:00
"marked": "^9.1.2",
"meilisearch": "^0.36.0",
"oauth4webapi": "^2.4.0",
2023-11-28 23:04:18 +01:00
"prisma": "^5.6.0",
2023-12-02 00:00:00 +01:00
"prisma-redis-middleware": "^4.8.0",
2023-11-27 06:30:57 +01:00
"semver": "^7.5.4",
"sharp": "^0.33.0-rc.2",
"vite": "^5.0.4",
"vite-ssr": "^0.17.1",
"vue": "^3.3.9",
"vue-router": "^4.2.5",
"vue-tsc": "^1.8.24"
}
2023-09-15 03:47:53 +02:00
}