fetch-sse
Version:
An easy API for making Event Source requests, with all the features of fetch(), Supports browsers and node.
71 lines (70 loc) • 1.54 kB
JSON
{
"name": "fetch-sse",
"version": "1.1.2",
"type": "module",
"description": "An easy API for making Event Source requests, with all the features of fetch(), Supports browsers and node.",
"keywords": [
"SSE",
"Server-Sent",
"Events",
"EventSource",
"fetch"
],
"author": "zac.ma",
"license": "MIT",
"bugs": {
"url": "https://github.com/yokingma/fetch-sse/issues"
},
"homepage": "https://github.com/yokingma/fetch-sse#readme",
"main": "./build/index.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"test": "jest"
},
"tsup": {
"entry": [
"src/index.ts"
],
"outDir": "build",
"format": [
"cjs",
"esm"
],
"splitting": false,
"dts": true,
"clean": true,
"sourcemap": true
},
"exports": {
".": {
"require": "./build/index.cjs",
"import": "./build/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yokingma/fetch-sse.git"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.3.5",
"typescript": "^5.4.2",
"typescript-eslint": "^7.1.1"
}
}