mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 22:48:17 +00:00
- Added functionality to manage storage providers, including adding, editing, and toggling active status. - Introduced utility functions for normalizing and serializing storage provider configurations. - Implemented masking of sensitive fields in storage provider settings. - Updated the dashboard UI components to reflect the new storage provider management features. - Added new constants and utility functions for better handling of storage provider data. Signed-off-by: Innei <tukon479@gmail.com>
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "core",
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"packageManager": "pnpm@10.18.0",
|
|
"author": "Innei",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"db:generate": "pnpm -C ../../packages/db db:generate",
|
|
"db:migrate": "pnpm -C ../../packages/db db:migrate",
|
|
"db:studio": "pnpm -C ../../packages/db db:studio",
|
|
"dev": "nodemon",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@afilmory/be-utils": "workspace:*",
|
|
"@afilmory/builder": "workspace:*",
|
|
"@afilmory/db": "workspace:*",
|
|
"@afilmory/env": "workspace:*",
|
|
"@afilmory/framework": "workspace:*",
|
|
"@afilmory/redis": "workspace:*",
|
|
"@afilmory/task-queue": "workspace:*",
|
|
"@afilmory/utils": "workspace:*",
|
|
"@aws-sdk/client-s3": "3.916.0",
|
|
"@hono/node-server": "^1.19.5",
|
|
"better-auth": "1.3.29",
|
|
"drizzle-orm": "^0.44.7",
|
|
"hono": "4.10.2",
|
|
"pg": "^8.16.3",
|
|
"picocolors": "1.1.1",
|
|
"reflect-metadata": "0.2.2",
|
|
"tsyringe": "4.10.0",
|
|
"zod": "^4.1.11"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.9.1",
|
|
"@types/pg": "8.15.5",
|
|
"nodemon": "3.1.10",
|
|
"unplugin-swc": "1.5.8",
|
|
"vite": "7.1.12",
|
|
"vite-node": "3.2.4",
|
|
"vite-tsconfig-paths": "5.1.4",
|
|
"vitest": "4.0.3"
|
|
}
|
|
}
|