-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 945 Bytes
/
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
{
"name": "cross-eventsource",
"version": "1.0.0",
"description": "EventSource for Node.js and Browser",
"type": "module",
"scripts": {
"build": "./node_modules/.bin/tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm run build"
},
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"node": "./dist/node.js",
"browser": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"keywords": [
"eventsource"
],
"files": [
"dist/"
],
"author": "Sergey Ukustov <[email protected]>",
"license": "(MIT OR Apache-2.0)",
"devDependencies": {
"@types/node": "^20.10.3",
"prettier": "^3.1.0",
"tsm": "^2.3.0",
"typescript": "^5.3.2",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
},
"dependencies": {
"@types/eventsource": "^1.1.15",
"eventsource": "^2.0.2"
}
}