-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
5,194 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[tools] | ||
bun = "latest" | ||
node = "23" | ||
"npm:pnpm" = "latest" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,13 @@ | |
"description": "Federated single-user microblogging software", | ||
"version": "0.4.0", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"prod": "bun run migrate && bun run src/index.tsx", | ||
"dev": "bun run migrate && bun run --hot src/index.tsx", | ||
"check": "bunx tsc && bunx biome check .", | ||
"migrate": "bunx drizzle-kit migrate", | ||
"migrate:generate": "bunx drizzle-kit generate" | ||
"prod": "pnpm run migrate && tsx --env-file-if-exists=.env src/index.tsx", | ||
"dev": "pnpm run migrate && tsx watch --env-file-if-exists=.env src/index.tsx", | ||
"check": "tsc && biome check .", | ||
"migrate": "drizzle-kit migrate", | ||
"migrate:generate": "drizzle-kit generate" | ||
}, | ||
"dependencies": { | ||
"@aws-sdk/client-s3": "^3.577.0", | ||
|
@@ -19,15 +20,18 @@ | |
"@fedify/markdown-it-mention": "^0.1.1", | ||
"@fedify/postgres": "^0.2.1", | ||
"@hexagon/base64": "^2.0.4", | ||
"@hono/node-server": "^1.13.7", | ||
"@hono/zod-validator": "^0.2.1", | ||
"@js-temporal/polyfill": "^0.4.4", | ||
"@logtape/logtape": "^0.8.0", | ||
"@logtape/sentry": "^0.1.0", | ||
"@sentry/bun": "^8.41.0", | ||
"@sentry/core": "^8.41.0", | ||
"@sentry/node": "^8.46.0", | ||
"@supercharge/promise-pool": "^3.2.0", | ||
"argon2": "^0.41.1", | ||
"cheerio": "^1.0.0", | ||
"csv-writer-portable": "^1.7.6", | ||
"drizzle-kit": "^0.21.0", | ||
"drizzle-orm": "^0.30.10", | ||
"es-toolkit": "^1.25.2", | ||
"fluent-ffmpeg": "^2.1.3", | ||
|
@@ -45,22 +49,18 @@ | |
"semver": "^7.6.3", | ||
"sharp": "^0.33.4", | ||
"ssrfcheck": "^1.1.1", | ||
"tsx": "^4.19.2", | ||
"uuidv7-js": "^1.1.4", | ||
"x-forwarded-fetch": "^0.2.0", | ||
"xss": "^1.0.15", | ||
"zod": "^3.23.8" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.9.3", | ||
"@types/bun": "latest", | ||
"@types/fluent-ffmpeg": "^2.1.26", | ||
"@types/markdown-it": "^14.1.1", | ||
"@types/qrcode": "^1.5.5", | ||
"@types/semver": "^7.5.8", | ||
"drizzle-kit": "^0.21.0" | ||
}, | ||
"engines": { | ||
"bun": "^1.1.38" | ||
}, | ||
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" | ||
"typescript": "^5.7.2" | ||
} | ||
} |
Oops, something went wrong.