2023-09-11 05:31:08 +02:00
|
|
|
{
|
2023-10-16 05:51:29 +02:00
|
|
|
"name": "lysand",
|
|
|
|
|
"module": "index.ts",
|
|
|
|
|
"type": "module",
|
2023-11-29 04:57:35 +01:00
|
|
|
"version": "0.1.2",
|
2023-10-16 05:51:29 +02:00
|
|
|
"description": "A project to build a federated social network",
|
|
|
|
|
"author": {
|
|
|
|
|
"email": "contact@cpluspatch.com",
|
|
|
|
|
"name": "CPlusPatch",
|
|
|
|
|
"url": "https://cpluspatch.com"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
2023-11-28 22:14:31 +01:00
|
|
|
"url": "https://github.com/lysand-org/lysand/issues"
|
2023-10-16 05:51:29 +02:00
|
|
|
},
|
2023-11-28 22:14:31 +01:00
|
|
|
"icon": "https://github.com/lysand-org/lysand",
|
2023-10-16 05:51:29 +02:00
|
|
|
"license": "AGPL-3.0",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"federated",
|
|
|
|
|
"activitypub",
|
|
|
|
|
"bun"
|
|
|
|
|
],
|
|
|
|
|
"maintainers": [
|
|
|
|
|
{
|
|
|
|
|
"email": "contact@cpluspatch.com",
|
|
|
|
|
"name": "CPlusPatch",
|
|
|
|
|
"url": "https://cpluspatch.com"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2023-11-28 22:14:31 +01:00
|
|
|
"url": "git+https://github.com/lysand-org/lysand.git"
|
2023-10-16 05:51:29 +02:00
|
|
|
},
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "bun run index.ts",
|
2023-11-20 03:05:07 +01:00
|
|
|
"start": "bun run index.ts",
|
2023-11-28 22:14:31 +01:00
|
|
|
"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 .",
|
2023-11-28 22:14:31 +01:00
|
|
|
"prisma": "bun run prisma.ts",
|
|
|
|
|
"generate": "bun prisma generate",
|
2023-11-30 05:16:58 +01:00
|
|
|
"benchmark:timeline": "bun run benchmarks/timelines.ts",
|
2023-11-21 00:58:39 +01:00
|
|
|
"cli": "bun run cli.ts"
|
2023-10-16 05:51:29 +02:00
|
|
|
},
|
2023-10-19 21:53:59 +02:00
|
|
|
"trustedDependencies": [
|
2023-11-11 03:36:06 +01:00
|
|
|
"sharp",
|
|
|
|
|
"@prisma/client"
|
2023-10-19 21:53:59 +02:00
|
|
|
],
|
2023-10-16 05:51:29 +02:00
|
|
|
"devDependencies": {
|
2023-11-28 23:04:18 +01:00
|
|
|
"@julr/unocss-preset-forms": "^0.1.0",
|
2023-11-20 03:29:32 +01:00
|
|
|
"@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",
|
2023-10-16 05:51:29 +02:00
|
|
|
"activitypub-types": "^1.0.3",
|
|
|
|
|
"bun-types": "latest",
|
2023-11-28 23:04:18 +01:00
|
|
|
"eslint": "^8.54.0",
|
2023-10-16 05:51:29 +02:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-11-28 23:04:18 +01:00
|
|
|
"eslint-formatter-pretty": "^6.0.0",
|
2023-10-16 05:51:29 +02:00
|
|
|
"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"
|
2023-10-16 05:51:29 +02:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
2023-11-28 23:04:18 +01:00
|
|
|
"typescript": "^5.3.2"
|
2023-10-16 05:51:29 +02:00
|
|
|
},
|
|
|
|
|
"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",
|
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",
|
2023-11-04 04:34:31 +01:00
|
|
|
"html-to-text": "^9.0.5",
|
2023-12-02 00:00:00 +01:00
|
|
|
"ioredis": "^5.3.2",
|
2023-10-16 05:51:29 +02:00
|
|
|
"ip-matching": "^2.1.2",
|
2023-11-12 02:37:14 +01:00
|
|
|
"iso-639-1": "^3.1.0",
|
2023-11-28 23:04:18 +01:00
|
|
|
"isomorphic-dompurify": "^1.10.0",
|
2023-10-16 05:51:29 +02:00
|
|
|
"jsonld": "^8.3.1",
|
2023-12-03 05:11:30 +01:00
|
|
|
"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",
|
2023-12-03 05:11:30 +01:00
|
|
|
"meilisearch": "^0.36.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"
|
2023-10-16 05:51:29 +02:00
|
|
|
}
|
2023-09-15 03:47:53 +02:00
|
|
|
}
|