-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.85 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
63
64
65
66
67
68
69
70
{
"name": "extended-eventsource",
"version": "1.7.0",
"author": "Lukas Reining",
"readme": "README.md",
"description": "Spec compliant EventSource implementation for browsers and Node.JS",
"homepage": "https://github.com/lukas-reining/eventsource",
"repository": {
"type": "git",
"url": "git+https://github.com/lukas-reining/eventsource.git"
},
"license": "MIT",
"type": "module",
"keywords": [
"EventSource",
"Server Sent Events",
"server sent events",
"SSE",
"sse"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"browser": "dist/index.iife.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc -p tsconfig.lib.json",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"core-js": "^3.33.2",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"msw": "^2.0.3",
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"msw": {
"workerDirectory": "public"
}
}