Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:25:45 +08:00
commit eba53798b0
11 changed files with 1754 additions and 0 deletions

23
templates/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "vercel-blob-project",
"version": "1.0.0",
"description": "Vercel Blob file storage",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@vercel/blob": "^2.0.0",
"next": "^15.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.7.0"
}
}