-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
80 lines (80 loc) · 2.45 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
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
{
"name": "power-flow-card-plus",
"version": "0.2.4",
"description": "A power flow card for Home Assistant",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"dashboard",
"custom-cards"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/flixlix/power-flow-card-plus.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flixlix/power-flow-card-plus/issues"
},
"homepage": "https://github.com/flixlix/power-flow-card-plus#readme",
"scripts": {
"build": "rollup -c",
"lint": "eslint src/*",
"release": "semantic-release",
"start": "rollup -wc",
"watch": "rollup -c --watch",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"test": "jest",
"precommit": "pnpm typecheck && pnpm format:write && pnpm test"
},
"dependencies": {
"@mdi/js": "^7.2.96",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^8.0.1",
"lit": "^2.2.2",
"lit-element": "^2.4.0",
"lit-html": "^2.7.0",
"memoize-one": "^6.0.0",
"sortablejs": "^1.15.0",
"superstruct": "^1.0.3",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@jest/globals": "^29.7.0",
"@open-wc/eslint-config": "^7.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.3.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-wc": "^1.3.2",
"jest": "^29.7.0",
"prettier": "2.8.8",
"rollup": "^2.70.2",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-serve": "^1.1.0",
"semantic-release": "^20.1.0",
"semantic-release-replace-plugin": "^1.2.7",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}