-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.16 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
{
"name": "arnelify-broker",
"version": "1.0.5",
"description": "Multi-language broker with RPC and UMQT support.",
"author": "Arnelify",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"install": "neon build --release",
"build": "clear && neon build --release && tsc",
"test_rpc": "clear && bun tests/rpc/index.ts",
"test_umqt": "clear && bun tests/transport/umqt.ts"
},
"files": [
"build/",
"native/src",
"native/artifacts.json",
"native/Cargo.lock",
"native/Cargo.toml",
"native/package.json",
"native/rustfmt.toml",
"LICENSE",
"package.json",
"README.md"
],
"devDependencies": {
"@types/node": "24.10.8",
"neon-cli": "0.10.1"
},
"homepage": "https://github.com/arnelify/arnelify-broker-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arnelify/arnelify-broker-node.git"
},
"bugs": {
"url": "https://github.com/arnelify/arnelify-broker-node/issues"
},
"keywords": [
"arnelify",
"arnelify-broker",
"arnelify-broker-node",
"broker",
"datagrams",
"tcp2",
"udp",
"umqt"
]
}