1 | {
|
2 | "name": "@worker-tools/deno-fetch-event-adapter",
|
3 | "description": "Dispatches global `fetch` events using Deno's native HTTP server.",
|
4 | "version": "1.0.5",
|
5 | "type": "module",
|
6 | "main": "dist/index.js",
|
7 | "module": "dist/index.js",
|
8 | "types": "index.d.ts",
|
9 | "exports": {
|
10 | ".": "./dist/index.js",
|
11 | "./listen.ts": "./listen.ts"
|
12 | },
|
13 | "files": [
|
14 | "dist",
|
15 | "*.ts"
|
16 | ],
|
17 | "publishConfig": {
|
18 | "access": "public"
|
19 | },
|
20 | "directories": {
|
21 | "test": "test"
|
22 | },
|
23 | "scripts": {
|
24 | "clean": "rm -rf dist",
|
25 | "prepack": "npm run clean && npm run build",
|
26 | "build": "mkdir -p dist && npm run bundle && cp listen.ts mod.ts",
|
27 | "bundle": "deno bundle listen.ts > dist/index.js"
|
28 | },
|
29 | "author": "Florian Klampfer <mail@qwtel.com> (https://qwtel.com/)",
|
30 | "license": "MIT",
|
31 | "repository": {
|
32 | "type": "git",
|
33 | "url": "git+https://github.com/worker-tools/deno-fetch-event-adapter.git"
|
34 | },
|
35 | "bugs": {
|
36 | "url": "https://github.com/worker-tools/deno-fetch-event-adapter/issues"
|
37 | },
|
38 | "homepage": "https://github.com/worker-tools/deno-fetch-event-adapter#readme",
|
39 | "keywords": [
|
40 | "polyfill",
|
41 | "service-worker",
|
42 | "deno",
|
43 | "cloudflare-workers",
|
44 | "fetch-event"
|
45 | ]
|
46 | }
|