-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "hm2mqtt",
"version": "1.9.0",
"type": "module",
"main": "dist/index.js",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "vite-node src/index.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:addon": "cd ha_addon && ./test_env.sh",
"format": "oxfmt src",
"format:check": "oxfmt --check src",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"bump-version": "vite-node bump-version.ts",
"release": "./release.sh"
},
"dependencies": {
"aedes": "^1.1.1",
"dotenv": "^17.4.2",
"mqtt": "^5.15.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@typescript/native": "npm:typescript@^7.0.2",
"jest": "^30.4.2",
"jest-junit": "^17.0.0",
"jest-util": "^30.4.1",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"ts-jest": "^29.4.12",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vite-node": "^6.0.0"
}
}