-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1001 Bytes
/
package.json
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
{
"name": "cloudflare-workers-typescript",
"version": "1.0.0",
"description": "Cloudflare Workers TypeScript setup",
"main": "build/worker.js",
"homepage": "https://github.com/karanpratapsingh/cloudflare-workers-typescript#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/karanpratapsingh/cloudflare-workers-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karanpratapsingh/cloudflare-workers-typescript.git"
},
"keywords": ["cloudflare", "typescript"],
"author": {
"name": "Karan Pratap Singh",
"email": "[email protected]",
"url": "https://karanpratapsingh.com"
},
"scripts": {
"dev": "npx wrangler dev",
"build": "npx esbuild ./index.ts --bundle --outfile=build/worker.js",
"publish": "npx wrangler publish"
},
"devDependencies": {
"@cloudflare/workers-types": "3.3.0",
"@cloudflare/wrangler": "1.19.6",
"esbuild": "0.14.8",
"typescript": "4.5.4"
}
}