-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.63 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "lovelace-form-card",
"version": "0.0.0",
"description": "",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"lovelace",
"custom-cards",
"form"
],
"module": "lovelace-form-card",
"repository": {
"type": "git",
"url": "https://github.com/bendikrb/lovelace-form-card"
},
"author": "Bendik R. Brenne <bendik@konstant.no>",
"license": "MIT",
"dependencies": {
"@mdi/js": "^7.4.47",
"globals": "^15.14.0",
"home-assistant-js-websocket": "^9.4.0",
"home-assistant-types": "^2025.1.11",
"lit": "2.8.0",
"lit-html": "2.8.0",
"memoize-one": "6.0.0",
"superstruct": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@material/mwc-button": "^0.27.0",
"@material/mwc-ripple": "^0.27.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"eslint": "9.18.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-webpack": "0.13.10",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-lit": "1.15.0",
"eslint-plugin-lit-a11y": "4.1.4",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-wc": "2.2.0",
"prettier": "^3.3.3",
"rollup": "^4.18.0",
"rollup-plugin-serve": "^1.1.1",
"ts-lit-plugin": "2.0.2",
"tslib": "^2.6.2",
"tslint": "^6.1.3",
"typescript": "^5.6.3"
},
"resolutions": {
"globals": "15.14.0"
},
"scripts": {
"lint": "yarn run lint:eslint && yarn run lint:prettier",
"format": "yarn run format:eslint && yarn run format:prettier",
"lint:eslint": "eslint --flag unstable_config_lookup_from_file \"src/**/*.ts\" --cache --cache-strategy=content --cache-location=node_modules/.cache/eslint/.eslintcache --ignore-pattern=.gitignore --max-warnings=0",
"format:eslint": "eslint --flag unstable_config_lookup_from_file \"src/**/*.ts\" --cache --cache-strategy=content --cache-location=node_modules/.cache/eslint/.eslintcache --ignore-pattern=.gitignore --fix",
"lint:prettier": "prettier src --cache --check",
"format:prettier": "prettier src --cache --write",
"build-bun": "bun build ./src/form-card.ts --sourcemap=external --minify --outdir=dist",
"build": "rollup -c --bundleConfigAsCjs",
"watch": "rollup -c --watch"
}
}