right before packages, env, db, and auth refactor

removing env validation, moving db and auth to each app
This commit is contained in:
Maze Winther
2025-11-26 09:42:44 +01:00
parent 04c09b439b
commit 811491ba9c
13 changed files with 346 additions and 31 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"name": "@opencut/ui",
"version": "0.0.0",
"description": "UI package for OpenCut",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts",
"./icons": "./src/icons/index.tsx"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/react": "^19.2.7",
"react": "^19.2.0"
}
}