-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.85 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "evstream",
"version": "1.0.4",
"description": "A simple and easy to implement server sent event library for express.js",
"keywords": [
"sse",
"server-sent-events",
"event-source"
],
"homepage": "https://github.com/kisshan13/evstream#readme",
"bugs": {
"url": "https://github.com/kisshan13/evstream/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kisshan13/evstream.git"
},
"license": "MIT",
"author": "Kishan Sharma",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./adapter/redis": {
"import": "./dist/adapters/redis.js",
"types": "./dist/adapters/redis.d.ts"
},
"./extensions/state-manager": {
"import": "./dist/extensions/state-manager.js",
"types": "./dist/extensions/state-manager.d.ts"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs}": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"scripts": {
"dev": "tsc --watch",
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc --incremental false",
"prepare": "husky",
"lint-staged": "lint-staged",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\""
},
"engines": {
"node": ">=17.8.0"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/lodash": "^4.17.19",
"@types/node": "^24.0.7",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"ioredis": "^5.5.0",
"prettier": "^3.7.4",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"dependencies": {
"lodash": "^4.17.21"
}
}