mirror of
https://github.com/ApfelTeeSaft/R2-Explorer.git
synced 2026-08-26 19:33:39 +00:00
* Migrate to biomejs * Cleanup and add workers-ci method * Started refactoring worker into hono + chanfana * Finish api worker refactor * Lint project * Lint project
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "r2-explorer",
|
|
"version": "0.0.1",
|
|
"description": "A Google Drive Interface for your Cloudflare R2 Buckets",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": ["dist", "LICENSE", "README.md"],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
"lint": "npx @biomejs/biome check src/ tests/ || (npx @biomejs/biome check --write src/ tests/; exit 1)",
|
|
"test": "vitest run --root tests",
|
|
"prepare": "husky",
|
|
"package": "npm run build && npm pack"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"cloudflare",
|
|
"worker",
|
|
"workers",
|
|
"serverless",
|
|
"cloudflare r2",
|
|
"r2",
|
|
"r2 storage",
|
|
"drive",
|
|
"google drive",
|
|
"ui",
|
|
"cf",
|
|
"typescript",
|
|
"npm",
|
|
"package",
|
|
"cjs",
|
|
"esm",
|
|
"umd",
|
|
"typed"
|
|
],
|
|
"author": "Gabriel Massadas",
|
|
"license": "MIT",
|
|
"homepage": "https://r2explorer.dev",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "[email protected]:G4brym/R2-Explorer.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/G4brym/R2-Explorer/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^4.20241127.0",
|
|
"@types/node": "^22.10.1",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.7.2",
|
|
"wrangler": "^3.91.0"
|
|
},
|
|
"dependencies": {
|
|
"chanfana": "^2.4.2",
|
|
"hono": "^4.6.12",
|
|
"postal-mime": "^2.3.2",
|
|
"zod": "^3.23.8"
|
|
}
|
|
}
|