feat(media): scaffold feature package with media collection only

This commit is contained in:
2026-05-05 08:11:50 +02:00
parent 3770764ac5
commit 50b687c43e
8 changed files with 76 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "@repo/media",
"private": true,
"version": "0.0.0",
"type": "module",
"exports": {
".": "./src/index.ts",
"./cms": "./src/integrations/cms/index.ts"
},
"scripts": {
"build": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"payload": "^3.14.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"vitest": "^3.1.0"
}
}