44 lines
990 B
JSON

{
"name": "@g1/sse-client",
"version": "0.2.0",
"description": "A custom SSE client that supports headers and bypasses certificate issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"sse",
"eventsource",
"server-sent-events",
"realtime"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.generation.one/GenerationOne/g1-ts-common-packages.git"
},
"publishConfig": {
"registry": "https://git.generation.one/api/packages/GenerationOne/npm/"
},
"dependencies": {
"event-source-polyfill": "^1.0.31"
},
"devDependencies": {
"@types/event-source-polyfill": "^1.0.5",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}