File size: 960 Bytes
d4b85c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "fetch-event-stream",
  "version": "0.1.5",
  "description": "A tiny (736b) utility for Server Sent Event (SSE) streaming via `fetch` and Web Streams API",
  "keywords": [
    "SSE",
    "Server-Sent Events",
    "Events",
    "EventSource"
  ],
  "author": {
    "name": "Luke Edwards",
    "email": "luke@lukeed.com",
    "url": "https://lukeed.com"
  },
  "repository": "lukeed/fetch-event-stream",
  "license": "MIT",
  "main": "./script/mod.js",
  "module": "./esm/mod.js",
  "types": "./types/mod.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./types/mod.d.ts",
        "default": "./esm/mod.js"
      },
      "require": {
        "types": "./types/mod.d.ts",
        "default": "./script/mod.js"
      }
    }
  },
  "scripts": {
    "test": "node test_runner.js"
  },
  "devDependencies": {
    "@types/node": "^20.9.0",
    "picocolors": "^1.0.0",
    "@deno/shim-deno": "~0.18.0"
  },
  "_generatedBy": "dnt@dev"
}