-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "r2-explorer",
"version": "1.2.0",
"description": "A Google Drive Interface for your Cloudflare R2 Buckets",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dashboard",
"dist",
"docs",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts && cp -R ../dashboard/dist/spa/ dashboard/ && cp ../../README.md . && cp ../../LICENSE . && mkdir -p docs/getting-started docs/guides && cp ../docs/index.md docs/ && cp ../docs/getting-started/*.md docs/getting-started/ && cp ../docs/guides/*.md docs/guides/",
"lint": "npx @biomejs/biome check src/ tests/ || (npx @biomejs/biome check --write src/ tests/; exit 1)",
"test": "tsc && npx vitest run --config tests/vitest.config.mts",
"package": "npm run build && npm pack",
"publint": "publint",
"publish-npm": "npm publish"
},
"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.com",
"repository": {
"type": "git",
"url": "git+https://github.com/G4brym/R2-Explorer.git"
},
"bugs": {
"url": "https://github.com/G4brym/R2-Explorer/issues"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.10.11",
"@cloudflare/workers-types": "^4.20251128.0",
"@types/node": "^24.10.1",
"@vitest/coverage-istanbul": "^3.2.4",
"hono": "^4.10.7",
"publint": "^0.3.17",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"wrangler": "^4.51.0"
},
"dependencies": {
"@hono/cloudflare-access": "^0.3.1",
"chanfana": "^2.8.3",
"postal-mime": "^2.6.1",
"zod": "^3.25.76"
}
}