forked from dchesterton/snmp2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "snmp2mqtt",
"version": "0.2.8",
"license": "MIT",
"bin": {
"snmp2mqtt": "dist/index.js"
},
"author": "Daniel Chesterton",
"dependencies": {
"ajv": "^8.16.0",
"async-mqtt": "^2.6.3",
"better-ajv-errors": "^1.2.0",
"bigint-buffer": "^1.1.5",
"js-yaml": "^4.1.0",
"luxon": "^2.5.2",
"net-snmp": "^3.12.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/js-yaml": "^4.0.9",
"@types/luxon": "^2.4.0",
"@types/node": "^20.14.10",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"scripts": {
"build": "rm -rf dist && tsc",
"start": "ts-node --files src/index.ts",
"dev": "ts-node --files src/index.ts",
"prettier:write": "prettier src --write"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}