-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "givtcp-battery-card",
"version": "0.2.4",
"description": "Lovelace card to display GivTCP battery info",
"private": true,
"type": "module",
"main": "dist/givtcp-battery-card.js",
"exports": {
".": "./dist/givtcp-battery-card.js"
},
"types": "types/givtcp-battery-card.d.ts",
"files": [
"dist",
"types"
],
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"givtcp",
"givenergy"
],
"repository": "https://github.com/codegnosis/givtcp-battery-card",
"author": "Codegnosis",
"bugs": {
"url": "https://github.com/codegnosis/givtcp-battery-card/issues"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"custom-card-helpers": "^1.9.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"home-assistant-js-websocket": "^8.0.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"lit": "^2.7.4"
},
"scripts": {
"dev": "vite --host",
"build": "rimraf dist && rimraf types && tsc && vite build",
"lint": "eslint --ext .ts --ignore-path .gitignore --fix src",
"format": "prettier . --write"
}
}