generated from custom-cards/boilerplate-card
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "big-slider-card",
"version": "1.1.5",
"description": "Lovelace big-slider-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "big-slider-card.js",
"type": "module",
"repository": "git@github.com:nicufarmache/lovelace-big-slider-card.git",
"author": "Nicu Farmache <github@nicu.ro>",
"license": "MIT",
"dependencies": {
"@nicufarmache/slide-gesture": "^1.1.2",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^8.2.0",
"lit": "^2.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"rollup": "^3.29.4",
"rollup-plugin-serve": "^2.0.2",
"typescript": "^5.2.2"
},
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c"
}
}