2023-09-11 05:31:08 +02:00
|
|
|
{
|
2023-10-16 05:51:29 +02:00
|
|
|
"name": "lysand",
|
|
|
|
|
"module": "index.ts",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"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/CPlusPatch/lysand/issues"
|
|
|
|
|
},
|
|
|
|
|
"icon": "https://github.com/CPlusPatch/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/CPlusPatch/lysand.git"
|
|
|
|
|
},
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "bun run index.ts",
|
2023-11-20 03:05:07 +01:00
|
|
|
"start": "bun run index.ts",
|
|
|
|
|
"migrate-dev": "bunx prisma migrate dev",
|
|
|
|
|
"migrate": "bunx prisma migrate deploy"
|
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": {
|
|
|
|
|
"@julr/unocss-preset-forms": "^0.0.5",
|
2023-11-04 04:34:31 +01:00
|
|
|
"@types/html-to-text": "^9.0.3",
|
2023-10-16 05:51:29 +02:00
|
|
|
"@types/jsonld": "^1.5.9",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
|
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
|
|
|
"@unocss/cli": "^0.55.7",
|
|
|
|
|
"activitypub-types": "^1.0.3",
|
|
|
|
|
"bun-types": "latest",
|
|
|
|
|
"eslint": "^8.49.0",
|
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
|
|
|
|
"eslint-formatter-pretty": "^5.0.0",
|
|
|
|
|
"eslint-formatter-summary": "^1.1.0",
|
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
|
|
|
"prettier": "^3.0.3",
|
|
|
|
|
"typescript": "^5.2.2",
|
|
|
|
|
"unocss": "^0.55.7"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"typescript": "^5.0.0"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-10-18 02:57:47 +02:00
|
|
|
"@aws-sdk/client-s3": "^3.429.0",
|
2023-11-11 03:36:06 +01:00
|
|
|
"@prisma/client": "^5.5.2",
|
2023-10-23 02:32:17 +02:00
|
|
|
"chalk": "^5.3.0",
|
2023-11-04 04:34:31 +01:00
|
|
|
"html-to-text": "^9.0.5",
|
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-10-17 00:03:29 +02:00
|
|
|
"isomorphic-dompurify": "^1.9.0",
|
2023-10-16 05:51:29 +02:00
|
|
|
"jsonld": "^8.3.1",
|
2023-10-17 00:03:29 +02:00
|
|
|
"marked": "^9.1.2",
|
2023-10-16 05:51:29 +02:00
|
|
|
"pg": "^8.11.3",
|
2023-11-11 03:36:06 +01:00
|
|
|
"prisma": "^5.5.2",
|
2023-10-16 05:51:29 +02:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2023-11-12 02:37:14 +01:00
|
|
|
"sharp": "^0.32.6",
|
2023-10-16 05:51:29 +02:00
|
|
|
"typeorm": "^0.3.17"
|
|
|
|
|
}
|
2023-09-15 03:47:53 +02:00
|
|
|
}
|