This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
forked from MatthewWid/better-sse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "better-sse",
"description": "Dead simple, dependency-less, spec-compliant server-side events implementation for Node, written in TypeScript.",
"version": "0.10.0",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"license": "MIT",
"author": "Matthew W. <[email protected]>",
"repository": "github:MatthewWid/better-sse",
"homepage": "https://github.com/MatthewWid/better-sse",
"bugs": "https://github.com/MatthewWid/better-sse/issues",
"keywords": [
"server-sent-events",
"sse",
"realtime",
"real-time",
"tcp",
"events"
],
"scripts": {
"build": "webpack --env production",
"test": "vitest",
"clean": "rimraf ./build",
"format": "prettier --write ./src/**/*.ts",
"lint": "eslint \"./src/**/*.ts\"",
"prepublishOnly": "npm-run-all clean format test build"
},
"files": [
"build",
"!build/**/*.map"
],
"engines": {
"node": ">=12",
"pnpm": ">=6"
},
"devDependencies": {
"@types/eventsource": "^1.1.11",
"@types/express": "^4.17.16",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eventsource": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.28.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"pnpm": {
"overrides": {
"url-parse@<1.5.6": ">=1.5.6",
"url-parse@<1.5.8": ">=1.5.8",
"url-parse@<1.5.7": ">=1.5.7"
}
}
}