-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "sveltekit-sse-utils",
"version": "0.1.0-poc.8",
"description": "SSE utilities for sveltekit that RPC over SSE with async generators and for await of loop",
"license": "ISC",
"author": "Amit",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"repository": "amit13k/sveltekit-sse-utils",
"files": [
"/lib"
],
"scripts": {
"build": "tsc",
"test": "jest --env=node --colors --coverage test",
"lint": "eslint --ext .js,.ts ."
},
"keywords": [
"sveltekit",
"sse",
"server sent events"
],
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"prettier-plugin-jsdoc": "^1.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@sveltejs/kit": "1.x",
"zod": "3.x",
"devalue": "4.3.x"
},
"dependencies": {
"unbounded-async-channel": "^0.1.5"
}
}