-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.17 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@worker-tools/deno-fetch-event-adapter",
"description": "Dispatches global `fetch` events using Deno's native HTTP server.",
"version": "1.0.5",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "index.d.ts",
"exports": {
".": "./dist/index.js",
"./listen.ts": "./listen.ts"
},
"files": [
"dist",
"*.ts"
],
"publishConfig": {
"access": "public"
},
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf dist",
"prepack": "npm run clean && npm run build",
"build": "mkdir -p dist && npm run bundle && cp listen.ts mod.ts",
"bundle": "deno bundle listen.ts > dist/index.js"
},
"author": "Florian Klampfer <[email protected]> (https://qwtel.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/worker-tools/deno-fetch-event-adapter.git"
},
"bugs": {
"url": "https://github.com/worker-tools/deno-fetch-event-adapter/issues"
},
"homepage": "https://github.com/worker-tools/deno-fetch-event-adapter#readme",
"keywords": [
"polyfill",
"service-worker",
"deno",
"cloudflare-workers",
"fetch-event"
]
}