-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 777 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 777 Bytes
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
{
"name": "pastebin-r2",
"version": "0.1.0",
"description": "A simple pastebin service using Cloudflare Workers and R2 storage",
"main": "dist/index.mjs",
"scripts": {
"build": "mkdir -p dist && cp src/index.html src/highlight.html dist/ && tsc --project tsconfig.json; node esbuild.mjs",
"deploy": "npm run build && wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev"
},
"keywords": [
"pastebin",
"cloudflare",
"workers",
"r2",
"hono"
],
"author": "Sean Beahan",
"license": "MIT",
"dependencies": {
"hono": "^4.12.15"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260426.1",
"esbuild-plugin-inline-import": "^1.1.0",
"typescript": "^6.0.3",
"wrangler": "^4.85.0"
}
}