-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 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
{
"name": "mushroom-strategy",
"version": "3.0.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"
},
"dependencies": {
"deepmerge": "^4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.32.1",
"bumpp": "^11.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"home-assistant-js-websocket": "^9.6.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.8.1",
"semver": "^7.7.3",
"superstruct": "^2.0.2",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.0"
},
"scripts": {
"ts:format": "prettier --write \"**/*.ts\"",
"json:format": "prettier --write \"**/*.json\"",
"mkdocs:serve": "mkdocs serve",
"md:lint": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#dist\"",
"md:lint:fix": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#dist\" --fix",
"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"
}
}