-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 864 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 864 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
{
"name": "geekmagic-controller",
"version": "0.1.0",
"description": "MQTT to HTTP controller for smalltv-ultra devices",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest --color",
"lint": "eslint . --ext .ts"
},
"keywords": ["mqtt","http","controller","tv","iot"],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.5.0",
"mqtt": "^4.3.7",
"yaml": "^2.3.1",
"jimp": "^0.22.10",
"form-data": "^4.0.0"
,
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.5.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}