-
-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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
{
"name": "boilerplate-card",
"type": "module",
"version": "2.0.0",
"packageManager": "yarn@4.12.0",
"description": "Lovelace boilerplate-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "boilerplate-card.js",
"repository": "git@github.com:custom_cards/boilerplate-card.git",
"author": "Ian Richardson <iantrich@gmail.com>",
"license": "MIT",
"dependencies": {
"@lit-labs/context": "0.4.1",
"@lit-labs/motion": "1.0.7",
"@lit-labs/observers": "2.0.2",
"@lit-labs/virtualizer": "2.0.12",
"custom-card-helpers": "2.0.0",
"home-assistant-js-websocket": "9.6.0",
"lit": "^3.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"rollup": "^4.20.0",
"rollup-plugin-css-only": "^4.5.5",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-serve": "^1.1.1",
"tslib": "^2.6.0",
"typescript": "^5.9.3"
},
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "yarn clean && yarn lint && yarn rollup",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"rollup": "rollup -c"
}
}