-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "realtime-pubsub-client",
"version": "1.0.0",
"description": "Realtime PubSub client for JavaScript/TypeScript",
"main": "dist/libs/index.js",
"types": "dist/libs/index.d.ts",
"scripts": {
"build": "rm -r dist/ && tsc",
"format": "prettier --write \"libs/**/*.ts\" \"test/**/*.ts\"",
"test": "c8 node --require ts-node/register --env-file=.env --test ./test/**/*.test.ts",
"release": "npm run format && npm run test && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/realtime-pubsub-client.git"
},
"files": [
"LICENSE",
"README.md",
"dist/libs"
],
"keywords": [
"realtime",
"websocket",
"client",
"javascript",
"typescript"
],
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BackendStack21/realtime-pubsub-client/issues"
},
"homepage": "https://github.com/BackendStack21/realtime-pubsub-client#readme",
"devDependencies": {
"bun-types": "^1.1.27",
"c8": "^10.1.2",
"jsonwebtoken": "^9.0.2",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"reconnecting-websocket": "^4.4.0",
"eventemitter2": "^6.4.9"
}
}