-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 949 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
{
"name": "syslogcanvas",
"version": "1.0.0",
"description": "Lightweight self-hosted syslog + SNMP trap receiver: catch UDP syslog and v1/v2c traps, store them in SQLite, review and export them from a dependency-light web UI.",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git+https://github.com/RootSwitch/SyslogCanvas.git"
},
"homepage": "https://github.com/RootSwitch/SyslogCanvas",
"bugs": {
"url": "https://github.com/RootSwitch/SyslogCanvas/issues"
},
"type": "commonjs",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"send-test": "node tools/send-test.js",
"test": "node tools/test-parse.js && node tools/test-auth.js && node tools/test-theme.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"better-sqlite3": "^12.2.0",
"net-snmp": "^3.20.0"
}
}