-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.51 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.51 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
77
78
79
{
"name": "button-card",
"version": "7.0.1",
"description": "Button card for lovelace",
"main": "dist/button-card.js",
"type": "module",
"scripts": {
"build": "npm run lint && npm run rollup",
"rollup": "rollup -c",
"babel": "babel dist/button-card.js --out-file dist/button-card.js",
"lint": "eslint src/*.ts",
"watch": "rollup -c --watch",
"postversion": "npm run build",
"audit-fix": "npx yarn-audit-fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/custom-cards/button-card.git"
},
"keywords": [
"lovelace"
],
"author": "kuuji",
"contributors": [
"Ian Richardson (https://github.com/iantrich)",
"Jérôme Wiedemann (https://github.com/RomRider)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/custom-cards/button-card/issues"
},
"homepage": "https://github.com/custom-cards/button-card#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "9.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^5.5.4",
"npm": "^11.5.2",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"rollup": "^4.52.5",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^25.0.1",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.9.3",
"typescript-styled-plugin": "^0.18.3",
"yarn-audit-fix": "^10.1.1"
},
"dependencies": {
"@ctrl/tinycolor": "^4.2.0",
"fast-copy": "^3.0.2",
"home-assistant-js-websocket": "^9.5.0",
"lit": "^3.3.1",
"lit-element": "^4.2.1",
"lit-html": "^3.3.1",
"memoize-one": "^6.0.0",
"parse-duration": "^2.1.4"
}
}