-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "@soketi/impl",
"description": "TypeScript boilerplate to use on your WebSocket implementations. Made with ❤️ at Soketi.",
"author": "soketi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/soketi/impl"
},
"keywords": [
"soketi",
"websocket",
"typescript",
"boilerplate",
"uWebSockets.js",
"pusher",
"pusher-js"
],
"version": "0.0.0",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint --ext .js,.ts ./src --fix",
"test": "NODE_OPTIONS=\"--trace-warnings\" vitest --dir=tests --coverage",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.2.3",
"@types/pusher-js": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-c8": "^0.31.0",
"@vitest/ui": "^0.31.0",
"eslint": "^8.40.0",
"typescript": "^5.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.24.0",
"vitest": "^0.31.0"
},
"dependencies": {
"arraybuffer-to-string": "^1.0.2",
"dot-wild": "^3.0.1",
"pusher": "^5.0.0",
"pusher-js": "^8.0.0"
},
"files": [
"./dist",
"./types/index.d.ts"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
}
}