Initial commit

This commit is contained in:
OpenCode Test
2025-12-24 10:50:10 -08:00
commit e1a64aa092
70 changed files with 5827 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "tline",
"private": true,
"version": "0.0.0",
"description": "Timeline media library (porthole)",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"typecheck": "bunx tsc -p packages/config/tsconfig.json --noEmit && bunx tsc -p packages/db/tsconfig.json --noEmit && bunx tsc -p packages/minio/tsconfig.json --noEmit && bunx tsc -p packages/queue/tsconfig.json --noEmit && bunx tsc -p apps/worker/tsconfig.json --noEmit && bunx tsc -p apps/web/tsconfig.json --noEmit",
"lint": "bunx eslint .",
"format": "bunx prettier . --check"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"bun-types": "^1.3.5",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"dependencies": {
"zod": "^4.2.1"
}
}