-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.26 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
{
"name": "@zwave-js/log-analyzer",
"version": "0.1.1",
"publishConfig": {
"access": "public"
},
"description": "AI powered log analyzer for Z-Wave JS",
"keywords": [
"zwave",
"z-wave",
"log",
"analyzer"
],
"license": "MIT",
"author": {
"name": "AlCalzone",
"email": "d.griesel@gmx.net"
},
"homepage": "https://zwave-js.github.io/log-analyzer/",
"repository": {
"type": "git",
"url": "https://github.com/zwave-js/log-analyzer.git"
},
"bugs": {
"url": "https://github.com/zwave-js/log-analyzer/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"zwave-log-analyzer": "./dist/cli.js",
"zwave-log-analyzer-mcp": "./dist/mcp-server.js"
},
"files": [
"dist/cli.js",
"dist/mcp-server.js",
"dist/index.{js,d.ts}",
"dist/lib/**/*.{js,d.ts}",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && npm run build:cli",
"build:cli": "tsc -p tsconfig.node.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier .",
"format": "prettier -w .",
"preview": "vite preview",
"test": "test/debug.sh",
"release": "release-script"
},
"dependencies": {
"@google/genai": "^2.10.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@zwave-js/core": "^15.25.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@alcalzone/release-script": "^5.2.1",
"@alcalzone/release-script-plugin-license": "^5.2.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^10.0.1",
"@mui/icons-material": "^9.2.0",
"@mui/material": "^9.2.0",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/yargs": "^17.0.35",
"@vitejs/plugin-react": "^6.0.3",
"clsx": "^2.1.1",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3",
"vite-plugin-svgr": "^5.2.0"
}
}