-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.39 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.39 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
{
"name": "ws-wrapper",
"version": "4.3.1",
"description": "Lightweight WebSocket wrapper lib with socket.io-like event handling, requests, and channels",
"files": [
"lib",
"index.mjs",
"index.d.ts",
"API.md",
"CHANGELOG.md",
"LICENSE",
"PROTOCOL.md",
"README.md"
],
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.mjs"
}
},
"browserslist": "defaults",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^17.5.0",
"koa": "^3.1.2",
"koa-static": "^5.0.0",
"parcel": "^2.13.3",
"prettier": "^3.3.2",
"ws": "^8.17.1"
},
"scripts": {
"format": "prettier --config .prettierrc --write \"**/*.{js,mjs,md}\"",
"build-example": "parcel build --no-cache --dist-dir ./example-app/dist ./example-app/index.html",
"lint": "eslint .",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bminer/ws-wrapper.git"
},
"keywords": [
"websocket",
"ws",
"event",
"handling",
"channels",
"request",
"namespace"
],
"author": "Blake C. Miner",
"license": "MIT",
"bugs": {
"url": "https://github.com/bminer/ws-wrapper/issues"
},
"homepage": "https://github.com/bminer/ws-wrapper#readme"
}