-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 KB
/
package.json
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
{
"name": "mmm-bosch-smart-home",
"version": "1.5.0",
"description": "A client interface for the Bosch Smart Home System on the MagicMirror² platform.",
"main": "MMM-BoschSmartHome.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jalibu/MMM-BoschSmartHome.git"
},
"keywords": [
"MagicMirror",
"Bosch Smart Home",
"Smart Home"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jalibu/MMM-BoschSmartHome/issues"
},
"homepage": "https://github.com/jalibu/MMM-BoschSmartHome#readme",
"dependencies": {
"bosch-smart-home-bridge": "^1.6.0",
"rxjs": "^7.8.1"
},
"scripts": {
"build": "rollup -c",
"bump": "npx bumpp package.json package-lock.json MMM-BoschSmartHome.js node_helper.js --no-push",
"dev": "rollup -c --sourcemap=inline",
"dev:watch": "npm run dev -- --watch",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"release": "npm run lint:fix && npm run build && npm run bump"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/express": "^5.0.0",
"@types/magicmirror-module": "^2.16.5",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}