-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"name": "websocketer",
"version": "2.1.4",
"description": "Simple and easy message passing for WebSocket",
"repository": {
"type": "git",
"url": "git+https://[email protected]/rhaldkhein/websocketer.git"
},
"keywords": [
"websocket",
"messaging",
"request",
"response",
"send",
"reply"
],
"author": "RhaldKhein",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhaldkhein/websocketer/issues"
},
"homepage": "https://github.com/rhaldkhein/websocketer#readme",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"build": "unbuild",
"prebuild": "del-cli dist",
"prepublish": "npm run build"
},
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"unbuild": {
"declaration": true
},
"dependencies": {
"eventemitter3": "^5.0.0",
"nanoid": "^3.3.4"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"del-cli": "^5.0.0",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"unbuild": "^0.8.11",
"ws": "^8.11.0"
}
}