mirror of
https://github.com/danieldemus/openhab-addons
synced 2026-07-29 12:34:21 +02:00
This includes a number of key bug fixes from the downstream library. Signed-off-by: Dan Cunningham <dan@digitaldan.com>
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "matter-server",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"bin": "dist/src/app.js",
|
|
"scripts": {
|
|
"clean": "tsc --clean",
|
|
"build": "tsc --build",
|
|
"build-clean": "tsc --build --clean",
|
|
"start": "ts-node src/app.ts",
|
|
"webpack": "webpack --mode production",
|
|
"webpack-dev": "webpack --mode development",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"lint": "eslint",
|
|
"lint-fix": "eslint --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.2.8",
|
|
"@eslint/eslintrc": "^3.3.1",
|
|
"@eslint/js": "^9.24.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.30.1",
|
|
"@typescript-eslint/parser": "^8.30.1",
|
|
"@types/bn.js": "^5.1.5",
|
|
"@types/node": "^20.9.0",
|
|
"@types/uuid": "^9.0.7",
|
|
"@types/ws": "^8.5.10",
|
|
"@types/yargs": "^17.0.32",
|
|
"eslint-plugin-node-import": "^1.0.5",
|
|
"eslint-plugin-regexp": "^2.7.0",
|
|
"globals": "^16.0.0",
|
|
"prettier": "^3.5.3",
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
"ts-loader": "^9.4.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.33.0",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"@matter/main": "0.17.3",
|
|
"@matter/node": "0.17.3",
|
|
"@project-chip/matter.js": "0.17.3",
|
|
"uuid": "^9.0.1",
|
|
"ws": "^8.18.0",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"src/**/*",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
} |