-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 997 Bytes
/
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
{
"name": "@siemaapplications/mqtt-sparkplug-clients",
"version": "0.0.1",
"description": "MQTT sparkplug CLI",
"main": "index.js",
"scripts": {
"start": "npm run sp_sub",
"sp_sub": "ts-node src/sp_sub/sp_sub.ts",
"sp_pub": "ts-node src/sp_pub/sp_pub.ts",
"transpile": "tsc",
"build": "pkg out/sp_sub/sp_sub.js --output /usr/local/bin/sp_sub && pkg out/sp_pub/sp_pub.js --output /usr/local/bin/sp_pub",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "SIEMA applications",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "^18.19.22",
"@types/pako": "^1.0.3",
"@types/yargs": "^17.0.8",
"pkg": "^5.8.0",
"ts-node": "^10.9.2",
"typescript": "^4.5.4"
},
"dependencies": {
"async-mqtt": "^2.6.3",
"lodash": "^4.17.21",
"long": "^4.0.0",
"pako": "^2.0.4",
"sparkplug-payload": "file:tahu/javascript/core/sparkplug-payload",
"yargs": "^17.3.1"
}
}