2024-01-23 23:39:46 +01:00
|
|
|
{
|
|
|
|
"name": "ha-matter-bridge",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2024-01-26 23:19:14 +01:00
|
|
|
"build": "tsc",
|
2024-01-30 17:53:08 +01:00
|
|
|
"start": "node ./build/index.js",
|
|
|
|
"lint": "eslint .",
|
|
|
|
"lint-fix": "eslint --fix .",
|
|
|
|
"prepare": "if [ $HUSKY ]; then cd .. && husky install matter-bridge/.husky; fi",
|
|
|
|
"commit": "./node_modules/.bin/git-cz"
|
2024-01-23 23:39:46 +01:00
|
|
|
},
|
|
|
|
"author": "",
|
2024-01-26 23:19:14 +01:00
|
|
|
"license": "GPL-3.0",
|
2024-01-23 23:39:46 +01:00
|
|
|
"dependencies": {
|
|
|
|
"@project-chip/matter-node.js": "^0.7.4",
|
|
|
|
"@project-chip/matter.js-tools": "^0.7.4",
|
|
|
|
"@types/node": "18.18",
|
|
|
|
"crypto-js": "^4.2.0",
|
|
|
|
"homeassistant-ws": "^0.2.2",
|
|
|
|
"ws": "^8.16.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-30 17:53:08 +01:00
|
|
|
"@stylistic/eslint-plugin": "^1.5.4",
|
|
|
|
"@stylistic/eslint-plugin-js": "^1.5.4",
|
|
|
|
"@stylistic/eslint-plugin-plus": "^1.5.4",
|
|
|
|
"@stylistic/eslint-plugin-ts": "^1.5.4",
|
2024-01-23 23:39:46 +01:00
|
|
|
"@types/crypto-js": "^4.2.2",
|
|
|
|
"@types/ws": "^8.5.10",
|
2024-01-30 17:53:08 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
|
|
"@typescript-eslint/parser": "^6.20.0",
|
|
|
|
"commitizen": "^4.3.0",
|
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2024-01-23 23:39:46 +01:00
|
|
|
"eslint": "^8.56.0",
|
2024-01-30 17:53:08 +01:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
|
|
"husky": "^9.0.7",
|
|
|
|
"prettier": "^3.2.4",
|
|
|
|
"prettier-eslint": "^16.3.0",
|
|
|
|
"standard-version": "^9.5.0",
|
2024-01-23 23:39:46 +01:00
|
|
|
"typescript": "^5.3.3"
|
2024-01-30 17:53:08 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "cz-conventional-changelog"
|
|
|
|
}
|
2024-01-23 23:39:46 +01:00
|
|
|
}
|
2024-01-30 17:53:08 +01:00
|
|
|
}
|