-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "mushroom-strategy",
"version": "3.2.0",
"description": "Automatically generate a dashboard of Mushroom cards.",
"keywords": [
"dashboard",
"strategy",
"mushroom"
],
"homepage": "https://github.com/DigiLive/mushroom-strategy",
"bugs": "https://github.com/DigiLive/mushroom-strategy/issues",
"license": "MIT",
"author": {
"name": "Ferry Cools"
},
"contributors": [
{
"name": "Aalian Khan"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/DigiLive"
},
"repository": {
"type": "git",
"url": "https://github.com/DigiLive/mushroom-strategy"
},
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"deepmerge": "^4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.1",
"@types/semver": "^7.7.1",
"typescript-eslint": "^8.62.0",
"bumpp": "^11.1.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"home-assistant-js-websocket": "^9.6.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"markdownlint-cli2": "^0.22.0",
"prettier": "^3.8.4",
"semver": "^7.8.5",
"superstruct": "^2.0.2",
"ts-loader": "^9.6.2",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"webpack": "^5.108.0",
"webpack-cli": "^7.0.3"
},
"scripts": {
"ts:format": "prettier --write \"**/*.ts\"",
"json:format": "prettier --write \"**/*.json\"",
"md:lint": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#dist\" \"#venv\"",
"md:lint:fix": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#dist\" \"#venv\" --fix",
"docs:serve": "mkdocs serve",
"docs:serve-versioned": "mike serve",
"docs:list": "mike list",
"build-dev": "webpack --config webpack.dev.config.ts",
"build": "webpack",
"bump": "bumpp --preid alpha --no-commit --no-tag --no-push package.json package-lock.json README.md ./docs/index.md ./src/mushroom-strategy.ts",
"prepare": "is-ci || husky"
}
}