-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.6 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "typedaemon",
"version": "0.3.9",
"license": "AGPL-3.0-only",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"scripts": {
"dev": "ts-node --transpile-only src/cli.ts",
"build": "script/build.sh",
"postinstall": "patch-package",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@babel/core": "^7.23.6",
"@babel/plugin-proposal-decorators": "^7.23.6",
"@babel/plugin-syntax-decorators": "^7.23.3",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@matchlighter/common_library": "^1.6.3",
"@matchlighter/ha-mobx-store": "^0.2.9",
"@sentry/node": "^10.38.0",
"@types/babel__core": "^7.20.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.13.0",
"async-lock": "^1.4.0",
"axios": "^1.5.0",
"babel-plugin-macros": "^3.1.0",
"chalk": "^4.0",
"cron-parser": "^4.9.0",
"deep-eql": "^4.1.3",
"ejs": "^3.1.8",
"execa": "^5.0.0",
"express": "^4.18.2",
"extract-comments": "^1.1.0",
"fs-extra": "^11.1.0",
"home-assistant-js-websocket": "^9.4.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"line-reader": "^0.4.0",
"load-tsconfig": "^0.2.3",
"md5": "^2.3.0",
"mobx": "6.11.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"moo": "^0.5.2",
"mqtt": "^4.3.7",
"mqtt-match": "^3.0.0",
"nearley": "^2.20.1",
"object-hash": "^3.0.0",
"parse-duration": "^1.1.0",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"prompts": "^2.4.2",
"source-map": "^0.6.1",
"strip-ansi": "^7.0.1",
"suncalc": "^1.9.0",
"tiny-typed-emitter": "^2.1.0",
"tsconfig-paths": "^4.1.2",
"type-fest": "^4.5.0",
"typescript": "^5.3.0",
"vm2": "^3.9.19",
"why-is-node-still-running": "^1.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"winston-transport": "^4.7.0",
"ws": "^8.12.1",
"yargs": "^17.7.0"
},
"devDependencies": {
"@types/async-lock": "^1.4.0",
"@types/babel-plugin-macros": "^2.8.5",
"@types/chalk": "^2.2.0",
"@types/deep-eql": "^4.0.0",
"@types/express": "^4.17.20",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^30.0.0",
"@types/line-reader": "^0.0.34",
"@types/md5": "^2.3.2",
"@types/nearley": "^2.11.2",
"@types/object-hash": "^3.0.4",
"@types/suncalc": "^1.9.0",
"@types/ws": "^8.5.4",
"@types/yargs": "^17.0.22",
"copyfiles": "^2.4.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.1"
}
}