-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "logbook-card",
"version": "2.5.6",
"description": "Logbook card for Home Assistant UI Lovelace",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "logbook-card.js",
"repository": "[email protected]:royto/logbook-card.git",
"author": "Julien Roy <[email protected]>",
"license": "MIT",
"dependencies": {
"@material/mwc-formfield": "^0.25.3",
"@material/mwc-ripple": "^0.25.3",
"@material/mwc-select": "^0.25.3",
"@material/mwc-switch": "^0.25.3",
"@material/mwc-textfield": "^0.25.3",
"custom-card-helpers": "1.8.0",
"fecha": "4.2.1",
"home-assistant-js-websocket": "8.2.0",
"humanize-duration-ts": "2.1.1",
"lit": "2.7.6"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/color": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jsdom": "^22.1.0",
"prettier": "^1.19.1",
"rollup": "^3.26.2",
"rollup-plugin-serve": "2.0.3",
"tslib": "^2.6.2",
"typescript": "5.1.6",
"vitest": "^0.34.4"
},
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c --bundleConfigAsCjs",
"test": "vitest"
}
}