-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.01 KB
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
{
"name": "event-source-plus",
"version": "0.1.15",
"description": "A better EventSource API",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"packageManager": "pnpm@10.6.3",
"repository": {
"url": "https://github.com/joshmossas/event-source-plus"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "unbuild",
"lint": "eslint src integration-tests",
"test": "vitest run ./src --passWithNoTests",
"start-server": "pnpm jiti ./integration-tests/server.ts --port 2020",
"format": "pnpm prettier --write ./src ./integration-tests ./.github .eslintrc.cjs .prettierrc build.config.ts package.json pnpm-lock.yaml README.md tsconfig.json ./.vscode",
"integration-test": "start-server-and-test start-server http://localhost:2020 integration-test:execute",
"integration-test:execute": "vitest run ./integration-tests --passWithNoTests --coverage.enabled --coverage.include=src"
},
"keywords": [
"sse",
"server sent events",
"fetch"
],
"author": "Joshua Sosso (@joshmossas)",
"license": "MIT",
"dependencies": {
"ofetch": "^1.5.1"
},
"devDependencies": {
"@arrirpc/schema": "^0.80.3",
"@eslint/js": "^9.39.1",
"@types/node": "^22.19.1",
"@vitest/coverage-v8": "^4.0.10",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"h3": "^1.15.4",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"start-server-and-test": "^2.1.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.47.0",
"unbuild": "^3.6.1",
"vitest": "^4.0.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}