-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "aster",
"version": "0.1.0",
"author": "kotx",
"description": "A robust Cloudflare R2 file uploader.",
"license": "MIT",
"scripts": {
"dev": "run-p -r client:dev worker:dev",
"deploy": "run-s client:build worker:deploy",
"worker:dev": "wrangler dev",
"worker:deploy": "wrangler deploy --minify --keep-vars",
"client:build": "esbuild ./src/client/*.{js,ts} --bundle --minify --outdir=assets/dist --target=es6",
"client:dev": "pnpm client:build --sourcemap --watch"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"@aws-sdk/s3-request-presigner": "^3.388.0",
"@uppy/aws-s3": "^3.6.2",
"@uppy/core": "^3.13.1",
"@uppy/dashboard": "^3.9.1",
"@uppy/golden-retriever": "^3.2.0",
"@uppy/image-editor": "^2.4.6",
"hono": "^3.4.1",
"jose": "^6.1.2",
"mime": "^3.0.0",
"ofetch": "^1.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251118.0",
"esbuild": "^0.27.0",
"npm-run-all": "^4.1.5",
"wrangler": "^4.49.0"
},
"packageManager": "pnpm@10.22.0"
}