-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.54 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.54 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "sunsynk-power-flow-card",
"version": "7.3.3",
"description": "A customizable Home Assistant card to emulate the Sunsynk System flow that's displayed on the Inverter screen.",
"main": "sunsynk-power-flow-card.js",
"prettier": {
"singleQuote": true,
"jsxSingleQuote": false,
"endOfLine": "lf"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lintindex": "eslint src/index.ts | more",
"lintindexfix": "eslint src/index.ts --fix",
"lintfixall": "eslint src/*.ts --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"rollup": "rollup -c",
"build": "rollup -c --bundleConfigAsCjs",
"watch": "rollup -c --watch",
"docs-build": "sphinx-autobuild docs docs/_build/html",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slipx06/sunsynk-power-flow-card.git"
},
"author": "slipx06 <slipx06@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/slipx06/sunsynk-power-flow-card/issues"
},
"homepage": "https://github.com/slipx06/sunsynk-power-flow-card#readme",
"dependencies": {
"@lit-labs/scoped-registry-mixin": "^1.0.3",
"custom-card-helpers": "^1.9.0",
"lit": "^3.1.3",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-transform-template-literals": "^7.24.1",
"@babel/preset-env": "^7.24.6",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/lodash.merge": "^4.6.9",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.2.0",
"babel-preset-minify": "^0.5.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"husky": "^9.0.0",
"lint-staged": "^16.1.6",
"npm": "^11.0.0",
"prettier": "^3.6.2",
"rollup": "^4.17.2",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.1.0"
},
"lint-staged": {
"*.{js,ts,json,md,yml,yaml}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}