-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
101 lines (101 loc) · 2.58 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "landroid-card",
"version": "1.2.2",
"description": "Landroid lawnmower card for Home Assistant Lovelace UI",
"main": "dist/landroid-card.js",
"type": "module",
"scripts": {
"start": "rollup -c --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"build": "del /q dist\\*.* && rollup -c",
"test": "npm run lint && npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Barma-lej/landroid-card.git"
},
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"landroid"
],
"author": "Barma-lej",
"license": "MIT",
"bugs": {
"url": "https://github.com/Barma-lej/landroid-card/issues"
},
"homepage": "https://github.com/Barma-lej/landroid-card#readme",
"dependencies": {
"core-js": "^3.39.0",
"custom-card-helpers": "^1.9.0",
"ha-template": "^1.2.2",
"lit": "^3.2.1",
"lodash.get": "^4.4.2",
"regenerator-runtime": "^0.14.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/git": "^10.0.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"globals": "15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-preset-env": "^10.0.8",
"rollup": "^4.24.3",
"prettier": "^3.3.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.1.0",
"rollup-plugin-serve": "^3.0.0",
"semantic-release": "^24.2.0",
"semver": "~7.6.3"
},
"overrides": {},
"browserslist": [
"last 2 versions",
"not dead"
],
"lint-staged": {
"*.js": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"prettier": {
"singleQuote": true
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/landroid-card.js",
"label": "landroid-card.js"
}
]
}
],
"@semantic-release/git"
]
}
}