-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 901 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 901 Bytes
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
{
"name": "broadcastt-js",
"version": "0.2.3",
"description": "JavaScript library for Broadcastt WebSocket Protocol",
"main": "dist/broadcastt.js",
"type": "module",
"license": "MIT",
"scripts": {
"compile": "rollup -c",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/broadcastt/broadcastt-js"
},
"keywords": [
"broadcastt",
"client",
"websocket",
"http",
"events",
"pubsub"
],
"author": {
"name": "László Görög"
},
"homepage": "https://broadcastt.xyz/",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.3.5",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}