-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "r2",
"private": true,
"version": "3.5.1",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"typecheck": "tsc -b --noEmit && tsc --noEmit -p tsconfig.worker.json",
"check": "npm run lint && npm run typecheck",
"preview": "vite preview"
},
"dependencies": {
"jose": "^6.2.0",
"jszip": "^3.10.1",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-dropzone": "^15.0.0",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@cloudflare/workers-types": "^4.20260316.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/spark-md5": "^3.0.5",
"@vitejs/plugin-react": "^6.0.1",
"esbuild": "^0.28.0",
"eslint": "^10.0.3",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.5.1",
"globals": "^17.3.0",
"lightningcss": "^1.32.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.0",
"wrangler": "^4.74.0"
},
"overrides": {
"cross-spawn": "^7.0.5",
"glob": "^11.1.0",
"minimatch": "10.2.5",
"tar": "7.5.11",
"brace-expansion": "5.0.5",
"flatted": "3.4.2",
"picomatch": "4.0.4",
"caniuse-lite": "1.0.30001775",
"undici": "7.24.4",
"eslint-plugin-react-hooks": {
"eslint": "$eslint"
}
}
}